Grandchildren in Entity Framework Core
July 4, 2017
To select children and grandchildren when selecting in entity framework on dot net core:
lDatabaseContext.Parents.Include(p => p.Children).ThenInclude(c => c.GrandChild)
Adventures in software
July 4, 2017
To select children and grandchildren when selecting in entity framework on dot net core:
lDatabaseContext.Parents.Include(p => p.Children).ThenInclude(c => c.GrandChild)
July 4, 2017
Here's a link to an interesting talk by John Romero (creator of Doom and Quake) about how development was done back in the day.
https://www.youtube.com/watch?v=KFziBfvAFnM
The takeaway is his principles of development, most of which are valid for all development today: