Why Entity Framework performs faster than Dapper in direct select statement [closed]
ORM (Object Relational Mapper) is a tool that creates layer between your application and data source and returns you the relational objects instead of (in terms of c# that you are using) ADO.NET objects. This is basic thing that every ORM does. To do this, ORMs generally execute the query and map the returned DataReader … Read more