Arthur Vickers
Arthur Vickers
See https://github.com/dotnet/efcore/pull/27557
See https://github.com/dotnet/efcore/issues/27516 The issue here is that our guidance is to introduce a required property in optional dependents. However, when table splitting, which is the default for owned types, Migrations...
See https://github.com/dotnet/efcore/issues/27071#issuecomment-1017283568
See https://github.com/dotnet/efcore/issues/26962
It would be useful to have some sample apps (probably ASP.NET Core, maybe Blazor and other frameworks too, that show using disconnected entities end-to-end. These should show: * Using `Update`...
Consider the simple TPT model: ```C# [Table("FeaturedPosts")] public class FeaturedPost : Post { } [Table("Posts")] public class Post { public int Id { get; set; } public string? Title {...
The sproc itself would be responsible for writing to multiple tables, using a discriminator, etc.
This would give us some good coverage of places where store types are important, such as #29020.
The shared Dictionary mapping for many-to-many generated by scaffolding cannot be overridden with a concrete join type in the model building partial without also deleting the existing mapping from OnModelCreating....