Arthur Vickers
Arthur Vickers
``` Unhandled exception. System.InvalidOperationException: The property 'Family.Id' could not be mapped because it is of type 'string', which is not a supported primitive type or a valid entity type. Either...
See https://github.com/aspnet/EntityFrameworkCore/issues/11241#issuecomment-410321600
Issue #10703 covered the ability of EF to call a parameterized constructor. However, the constructor to use is not configurable. This issue is about adding fluent API and/or annotations to...
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,...
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,...
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,...
.NET platforms have evolved since we first introduced tooling for migrations, database scaffolding, etc. in EF Core 1.0. We plan to update the tooling architecture to better support new platforms,...
That is, bind an instance of a nested complex type to a constructor parameter. Related to #12078
For example, this from #9536: ```C# public class Friend { public int Id { get; set; } public string Name { get; set; } public FullAddress Address { get; set;...