Dmytro Iavlianskyi
Dmytro Iavlianskyi
TL;DR; To some degree the reasoning could be the same as why many-to-many is now allowed without explicit join entity. It was not a technical problem to create join entity,...
The main difference would be how app classes looks like. Right now, I have to do this: ``` public class RangeItem: BaseItem { public RangeData Data { get; set;} }...
For class structure like this ``` public class BaseItem { public int Id { get; set; } public string UsualProperty { get; set; } public string? BaseClassString { get; set;...
How about look at this from a different perspective. EF can threat configuration from examples above as instructions how to build implicit Owned entity and then use it internally. For...
Ok, and thanks for looking at this!