Completed
Entity Framework Core in Action
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Getting the Best Out of Entity Framework Core
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 Entity Framework Core in Action
- 3 A super-simple database to show how EF Core works
- 4 Three types of relationships
- 5 Three (four) ways of reading the database
- 6 A look at the Select load code
- 7 The SQL created by the Select query
- 8 A better way to set up the relationships
- 9 EF Core works out the correct order for the SQL
- 10 Understanding relational fixup
- 11 Relational fixup and hierarchical data
- 12 EF Core and Domain-Driven Design in 5 minutes
- 13 An example of a DDD-styled entity class
- 14 Alternative to Delete - soft delete
- 15 ValueConversions (came in EF Core 2.1)
- 16 Using code to configure EF Core
- 17 Using Cosmos DB to improve performance
- 18 Cosmos DB-in EF Core 3 (some limitations)
- 19 Unit testing applications that user EF Core
- 20 The end