Arthur Vickers
Arthur Vickers
Split off from #13850 By default, a column is nullable in the database if the property to which it is mapped is nullable. This is true even if the converter...
```C# using (var context = new AnimalsContext()) { await context.Database.EnsureDeletedAsync(); Console.WriteLine(context.Model.ToDebugString()); Console.WriteLine(); await context.Database.EnsureCreatedAsync(); var catFood = new PetFood("Lily's Kitchen", LifeStage.Adult); var dogFood = new PetFood("Canagan", LifeStage.Adult); var hay =...
See: * [Introducing the New NuGet.org Package Details Page](https://devblogs.microsoft.com/nuget/introducing-the-new-nuget-org-package-details-page/) * [Sample Microsoft.EntityFrameworkCore readme](https://dev.nugettest.org/packages/loic.dotnet.efcore) * [Documentation for PackageReadme](https://docs.microsoft.com/en-us/nuget/reference/msbuild-targets#packagereadmefile)
These types create a valid model for SQL Server: ```C# public abstract class Animal { public int Id { get; set; } public ICollection Humans { get; } = new...
This an "epic" issue for the theme of miscellaneous improvements to reverse engineering (scaffolding) a context from an existing databases/. Specific pieces of work will be tracked by linked issues....
This an "epic" issue for the theme of improving model building conventions. Specific pieces of work will be tracked by linked issues. #### Done in 6.0 - [x] Pre-convention model...
This is a grouping of related issues. Feel free to vote (👍) for this issue to indicate that this is an area that you think we should spend time on,...
## September 15, 2022 ## Highlights EF Core 7.0 (EF7) RC1 is [on Nuget now](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.0-rc.1.22426.7)! RC1 contains all the major feature work for EF7. However, we have merged [over 70...
Would be nice to have a gesture in VS to create a bundle. :-)
For two reasons: * To provide a simple starting point for getting-started * To provide a starting point for issue reports--see https://github.com/dotnet/efcore/issues/20029 For the second point, we should also update...