Entity Framework Core 8: navigation / joins without foreign key
Is there a way to mimic Entity Framework Core’s navigation properties in a many-to-many relationship without foreign keys?
EF Core customize scaffolding without deriving from internal classes
Entity Framework Core Customize Scaffolding describes a process for customizing the entities created when scaffolding an existing database using Entity Framework Core. This we’ve done successfully up through EF Core 6.
Customizing Temporal Table DateTime mappings with EF Core
The datetime values in temporal tables are UTC. Is it possible to configure your DbContext class to apply a custom mapping to the sysstarttime/sysendtime columns? In this case I would simply want to convert them to the time zone that my clients are in, but I am interested if there is a configuration I can apply in just one spot to cover every entity. If not that then can I hook into the mapping process and apply it there? Thanks.
EF Core modelBuilder OrderBy
I’ve got the following EF Core entities:
How to unit test FromSqlInterpolated in EF Core?
I want to write a unit test for a method that returns data from a stored procedure, how do I mock this?