Skip to content
36 changes: 36 additions & 0 deletions .github/agents/docs-generator.agent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
name: EF Documentation Generator
description: This agent creates documentation PRs in the EF documentation site when new features are implemented in EF Core.
disable-model-invocation: true
---

# Document new EF features

Given an EF issue by the user, this custom agent generates documentation for features introduced in that issue and submits a PR to the EF docs repo (dotnet/EntityFramework.Docs).

## Target branch

* The EF repo has automation to automatically add a label indicating in which preview/rc the feature has been completed; the label is applied to the issue (not PR), and has the form `preview-3` or `rc-2` with the number adjusted.
* The docs repo should have a corresponding branch, containing documentation to be published live when that preview/rc is published.
* When the workflow is launched, check the issue, find the preview/rc label, and submit the PR against the corresponding branch in the doc repo (dotnet/EntityFramework.Docs).
* If the label is missing, abort and post a comment to the triggering issue.

## Writing the documentation

* Fully read the conversation history of the issue, as well as any linked PRs or relevant issues linked from it, to gain good context on the feature, APIs introduced, etc.
* Add documentation in the appropriate section of the docs, depending on what the feature is.
* Fully document the feature, but keep it brief - do not add edge-case, non-important documentation in the name of exhaustivity that wouldn't be relevant to the majority of users.
* Before the new documentation, add the following note (adjusting for the major version):

```
> [!NOTE]
> This feature is being introduced in EF Core 11, which is currently in preview.
```

* Find the "what's new" page for the latest major release (typically `core/what-is-new/ef-core-11.0`, adjusting for the version), and add a **brief** section on the feature - just the minimum needed to make the user understand what it's about; include a minimal code sample as well if relevant. At the bottom, add a line such as "For more information on X, see the documentation" linking to the full docs added above, in case the user wants to dive deeper.
* For both the full docs and the what's new documentation, do not simply create a new section; first check to see if there's an existing section that already covers related/similar functionality; if there is, either merge the new content into it or place the new section next to it.
* If the issue adds a function translation, add the appropriate entry (or entries) in the provider's functions page. Do not add functions entries for LINQ operators (e.g. `Contains`).

## Additional instructions

* The commit in the resulting PR should have a title of the form "Document X", where X is the name of the feature as it appears in the title of the originating issue. If the title is too long for a git commit, make it shorter. The commit body should be of the form "Document Y", where Y is a link to the originating issue.
6 changes: 6 additions & 0 deletions entity-framework/core/extensions/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,12 @@ Provides a wrapper around [SQL Server Express LocalDB](/sql/database-engine/conf

[GitHub repository](https://github.com/SimonCropp/LocalDb) | [NuGet](https://www.nuget.org/packages/EfLocalDb)

### EfCore.InMemory.Transactions

Seamless transaction support for EF Core InMemory provider. Eliminates "transactions with isolation level are not supported" errors in tests without changing production code. Provides safe extension methods and NoOpDbContextTransaction for UnitOfWork patterns. For EF Core: 8-10.

[GitHub repository](https://github.com/ShadyNagy/EfCore.InMemory.Transactions) | [NuGet](https://www.nuget.org/packages/EfCore.InMemory.Transactions)

### EntityFrameworkCore.Projectables

Flexible projection magic for EF Core. Use properties, methods, and extension methods in your query without client evaluation. For EF Core: 3-6, 8.
Expand Down
20 changes: 20 additions & 0 deletions entity-framework/core/learn-more/community-standups.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ The .NET Data Community Standups are live-streamed monthly (roughly) on Wednesda

| Date | Area | Title |
|--------------|-----------------------|------------------------------------------------------------------------------------------|
| Feb 12, 2026 | AI | [Adam tells us about Microsoft.Extensions.DataIngestion](#Feb12_2026) |
| Nov 20, 2025 | Release | [EF 10 release celebration 🎉](#Nov20_2025) |
| Oct 16, 2025 | Migrations | [Jeremy Miller shares his view on migrations and Marten](#Oct16_2025) |
| Sep 18, 2025 | ORMs | [Jiri and Nick talk about experience with Dapper and EF Core](#Sep18_2025) |
Expand Down Expand Up @@ -108,6 +109,25 @@ The .NET Data Community Standups are live-streamed monthly (roughly) on Wednesda
| Jun 10, 2020 | EF Core Power Tools | [EF Core Power Tools](#power-tools1) |
| May 6, 2020 | Welcome! | [Introducing the EF Core Community Standup](#one) |

## 2026

<a name="Feb12_2026"></a>

### Feb 12: [Adam tells us about Microsoft.Extensions.DataIngestion](https://www.youtube.com/live/pQivzi4n6jM?si=Ms9H0O3Mgw147hhj)

Microsoft.Extensions.DataIngestion is new addition into Microsoft.Extensions collection and this one touches databases and AI. Exciting. Adam Sitnik, who worked on implementation, tells us what's what and maybe some behind the scenes.

Featuring:

- [Adam Sitnik](https://github.com/adamsitnik) (Special guest)
- [Jiri Cincura](https://www.tabsoverspaces.com/) (Host)

Links:

- [Introducing Data Ingestion Building Blocks (Preview)](https://devblogs.microsoft.com/dotnet/introducing-data-ingestion-building-blocks-preview/)
- [dotnet/extensions GitHub](https://github.com/dotnet/extensions)
- Template: `Microsoft.Extensions.AI.Templates`

## 2025

<a name="Nov20_2025"></a>
Expand Down
Loading