Micro-ORM Dapper can easily populate an object from a database without the need to define other entities or classes. The following is sample Dapper code.
Is there an equivalent Microsoft package with the same functionality?
What is the Microsoft package that is closest to Dapper ?
var stuff = db.Query<stuffclass>("select a,b,c from Foo where a = {0}", x)
source share