Basic Entity Framework(EF) Core with ASP.NET

R M Shahidul Islam Shahed
4 min readApr 30, 2023

Entity Framework Core is an open-source Object Relational Mapping (ORM) framework developed by Microsoft that enables .NET developers to work with databases using .NET objects. It allows developers to interact with databases using high-level programming concepts instead of writing SQL code manually. With Entity Framework Core, developers can create, read, update, and delete (CRUD) data from the database using C# or any .NET language. It supports various database providers such as Microsoft SQL Server, PostgreSQL, MySQL, SQLite, and others. It also provides features like change…

--

--