Blog Archive for July 4, 2017

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)

References

John Romero Talk

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:

  • “Polish as you go. Don’t depend on polish happening …