My personal preference for the current application I'm working on is to use ORM for this purpose.
I haven't used ORM yet, and I have little knowledge about EntityFramework. I recently heard about Dapper and thought about using it.
My question is: is it possible in Dapper to use a code-based approach to create a database from classes, as in EntityFramework?
Is it a good idea to use EntityFramework to create a database and query using Dapper?
source
share