4

Dapper or Entity framework ?????

Comments
  • 1
    Never heard of Dapper and used EF once or twice, subscribing for more information
  • 1
    A quick google search later. EF for sure, I dont want to write my own queries
  • 1
    I used ef core a lot and I can tell you it's really good, but I dunno about dapper
  • 1
    For quick CRUD you could use EF. I would recommend Dapper however, because you have more control.

    To use a quote of someone; Use EF is you don't care about the database, use Dapper of you do.
  • 2
    @Big-R with EF you have full controll over the database as well though
  • 1
    @Codex404 It's an ORM, you never have full control over the database. I still don't know why people prefer to learn a DSL, when SQL is not hard and it's actually a very useful language.
  • 1
    @kpenc Laravel their ORM gives me full control over the database. So does EF. Youju st need to know the ORM.
Add Comment