From the course: Learning Entity Framework Core

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Benefits of Entity Framework

Benefits of Entity Framework - Entity Framework Tutorial

From the course: Learning Entity Framework Core

Start my 1-month free trial

Benefits of Entity Framework

- [Instructor] So there's a lot of benefits to using Entity Framework and ORMs in general. The first that I had mentioned was the reduction of code, the less likelihood that you need to write a lot of tedious code. And these tools provide a host of services that allow developers to focus more on the business logic of the application rather than repetitive CRUD operations, for example, creating, reading, update, deleting, that type of logic. So besides the reduction of code I also listed nine other benefits. The next is it facilitates implementing the Domain Model pattern. So, one of the most important reasons ORMs even exist is that your model entities can be based more on real business concepts rather than based on your database structure. So you can use terms like movie or person that reflect the real world so it makes it a little bit easier to digest when you are working through business logic. ORM tools provide the functionality, through mapping, between the logical business model…

Contents