Arthur Vickers
Arthur Vickers
See https://github.com/aspnet/EntityFrameworkCore/issues/12389
See https://github.com/dotnet/efcore/issues/6983
See https://github.com/aspnet/EntityFrameworkCore/pull/10939 and https://github.com/aspnet/EntityFrameworkCore/issues/11992
Specifically to show how the model can be annotated, the model differ can diff those annotations, and migrations operations can be created.
See https://github.com/aspnet/EntityFrameworkCore/issues/17630
This will allow docs to link to a simple, short explanation of a term without including that explanation everywhere. It would also be useful if the glossary entities linked to...
For example: * Reference @ErikEJ's https://github.com/ErikEJ/EFCorePowerTools directly from the reverse engineering docs * Reference https://github.com/efcore/EFCore.NamingConventions directly from the model-building docs See also #2280
For example, shadow FK property names in EF Core are `PrincipalId` rather than the `Principal_Id` name used by independent associations in EF6. This can be fixed with something like: ```C#...
To avoid people dropping down to the expression builder when it is not required.
See https://github.com/aspnet/EntityFrameworkCore/issues/18996