I\'m trying to use Dapper to interface with the ASP.NET SQL Membership Provider tables. I wrapped the SqlMembershipProvider class and added an additional method to get me t
I use this maybe it's help someone
YourList = connection.Query(Query, arg) .Select(f => new ClassWithConstructor(f.foo,f.bar)) .ToList();