Master Entity Framework Core for modern database operations and data access.
Master Entity Framework Core for modern database operations and data access.
Learn the fundamentals of Entity Framework Core and its architecture
Content by: Sunny Radadiya
.Net Developer
Entity Framework Core is a lightweight, extensible, open source and cross-platform version of the popular Entity Framework data access technology. It's designed to be used with .NET Core applications.
Test your understanding of this topic:
Master Code First development and database migrations with EF Core
Content by: Akash Vadher
.Net Developer
Code First allows you to define your data model using C# classes and then generate the database from these classes.
# Add a new migration
dotnet ef migrations add InitialCreate
# Update database
dotnet ef database update
# Remove last migration
dotnet ef migrations remove
# Generate SQL script
dotnet ef migrations script
# Drop database
dotnet ef database drop
Test your understanding of this topic:
Continue your learning journey and master the next set of concepts.
Continue to Module 5