Arthur Vickers

Results 139 issues of 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...

type-enhancement
area-type-mapping
punted-for-6.0

```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)

type-enhancement
area-docs

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....

type-enhancement

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...

type-enhancement
area-model-building
area-conventions

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,...

type-enhancement
area-relational-mapping
composite-issue

## 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. :-)

enhancement
migrationstool

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...

area-getting-started