#entity-framework
Read more stories on Hashnode
Articles with this tag
Querying data is one of the primary tasks performed with Entity Framework Core. We'll focus on simple queries using LINQ, which seamlessly translates...
The Repository Pattern is an abstraction of the data layer. In essence, a repository acts as a black box that can receive and retrieve data from your...
Linking Entities in Entity Framework Core To establish a relationship between User and WorkingExperience, we need to modify the entity classes as...
Understanding Entity Framework Core Migrations Migrations in Entity Framework Core are a way to keep your application's model structure synchronized...
Introduction Welcome to our blog post, where we'll explore the two primary approaches of Entity Framework Core (EF Core): Code First and Database...
Introduction Welcome to our blog, where we delve into the world of Entity Framework Core (EF Core)! In this post, we'll explore how EF Core, a library...