EntityFramework.Docs icon indicating copy to clipboard operation
EntityFramework.Docs copied to clipboard

Documentation for Entity Framework Core and Entity Framework 6

Results 271 EntityFramework.Docs issues
Sort by recently updated
recently updated
newest added

### Type of issue Missing information ### Description Article: https://learn.microsoft.com/en-us/ef/core/modeling/data-seeding The article does mention that Migrations should be used to apply data seeding. However, one could just interpret this as...

area-migrations

### Type of issue Missing information ### Description There is no documentation on how to use Primitive Collections beyond what is found [here](https://learn.microsoft.com/en-us/ef/core/what-is-new/ef-core-8.0/whatsnew#primitive-collections). For example, it lacks details on how...

area-query
undocumented-feature

### Type of issue Missing information ### Description Hi, I am new to EF Core and I have a comment about this part about DbContext (of the page with URL...

Without modification this benchmark fails as blog url and post title and content are not marked as nullable ? and we don't explicitly insert into these fields in the SeedData...

### Type of issue Outdated article ### Description [Add back setter for scaffolded collection navigations](https://github.com/dotnet/efcore/pull/30311) ### Page URL https://learn.microsoft.com/en-us/ef/core/modeling/relationships/navigations#reference-navigations ### Content source URL https://github.com/dotnet/EntityFramework.Docs/blob/main/entity-framework/core/modeling/relationships/navigations.md ### Document Version Independent Id 46d5e507-b441-4c2c-26c5-7e8a4b03b29a...

area-scaffolding

At least for SQL Server, probably for Cosmos. Also, we can do getting started examples for other providers (like PostgreSQL) that don't require database installation.

area-global

virtual seems to be missing as pointed out in the comments of this answer: https://stackoverflow.com/a/22708800 I also needed that for the migration to work at all.

## Structured data in nested Json can't be set to null Currently it is not possible to update nested structured data in a json column to null, just by attaching...

area-aggregates

### Type of issue Other (describe below) ### Description ``` modelBuilder.Entity() .Property(e => e.RowVersion) .HasConversion() .IsRowVersion(); ``` In this example I think the ".HasConversion" is not required. This is how...