shlogg · Early preview
Renuka Patil @renukapatil-21

Entity Framework Core Simplified Database Connectivity

Entity Framework Core tutorial using Code First and Database First approaches. Learn how to create a database, add tables, and interact with data using C# and .NET.

Using Entity framework we achieve database connectivity.
ORM (Object Relational Mapping) 

To address data access requirements of ASP.NET CORE MVC application, you can use ORM framework.
ORM is tool for storing data from domain objects(model) to relational database.
Simplifies the process of accessing data from application.
ORM is tool for storing data from domain objects(MODEL CLASSES) to relational database(SQL SERVER DB).
To achieve data access requirements - access and storing data in the database.


Entity Framework Core is the new version of Entity version of Entity Framework after EF6 b...