📈
Entity FrameWork(EF) Ado.Net
  • Entity FrameWork
  • ORM(Object Relational Mapping)
  • Lazy Loading vs Eager Loading
  • Dapper
Powered by GitBook
On this page

Was this helpful?

Dapper

Dapper is the micro library by ADO.NET.It is smaller than Entity Framework also it is more usefull than Entity Framework in terms of usage speed.Because of query that is sent from Dapper connected ADO.Net without any mutable.

Advantages of Dapper; 1.Performance in terms of speed; 2.Easily execute for queries and to bind object; 3.Dapper is Open Source library that's why you can check on the Git. Disadvantages of Dapper; 1.It is suitable for the code failure because of online written queries.Besides that you can see that failure on the run-time not the build-time; 2.Dapper doesn't create entity models for connecting the tables that we created; 3.Dapper doesn't create classes for you entities; 4.Dapper has not library that to generate queries; 5.All queries,you should write yourself by manuel; 6.Dapper doesn't follow entity objects situations; 7.That a object has been changed,dapper did not know that,i mean you should follow your entity objects manuelly.

PreviousLazy Loading vs Eager Loading

Last updated 4 years ago

Was this helpful?