Mar 20, 2023
Hi Gurdeep, Thanks for you kind words.
Choosing the ORM depends on following factors
- If maintainability and fast development then EF core
- If faster db interactions then Dapper but it is not faster in all CRUD operations
So the interesting idea is you can choose the combination of both. The latest version of EF is almost matching the Dapper performance.
My recommendation is to always go for EF core as it has more enhanced features like query tracking etc.