Linking entities in EF Core
I am looking for a way to link tables as entities in EF Core 6.0 (Or if 8.0 is required for a better solution I am open to that as well.)
Smart way to link tables in EF Core
I have two tables, where I made a model and entity configuration for Groups
. I want the MemberId
column from GroupMembers
to be included in my group model, as a list, obviously only where matching the GroupId
.