DEV Community

Discussion on: What is Dapper, and why you should consider it for your .NET projects

Collapse
 
kspeakman profile image
Kasey Speakman • Edited

I use Dapper in pretty much every project now too. I've used it with MSSQL and Postgres. I also use it from F# -- it maps nicely onto F# record types. (I did have to add some type handlers for Option types.) Dapper is a great low investment, high return library.

Collapse
 
1kevgriff profile image
Kevin Griffin @ #Shedquarters

Yes! Thank you for reminding me about type handlers! I need to write about them- because that's a great feature. I've written a handful myself. Extremely useful.