Top 20 NuGet Dapper Packages

High performance operation for MS SQL Server built for Dapper ORM. Including bulk operations Insert, Update, Delete, Get as well as Upsert both single and bulk.
Package Description
Package Description
orm framework, dapper extend,expression query/write
Library of concrete components to implement data access with Dapper.
Package Description
Independent open source project by Kristian Gundry Nielsen. SQL binding for azure functions using Dapper, currently only working with MS SQL Server
Extension library for Dapper to include ORM support and async.
Package Description
Extension library to connect and perform MySQL Database operation in efficient way Find example here : https://github.com/bibashkafle/DapperMySqlExtenstionExample/
A lightweight ORM wrapper. Inspired by Dapper, but made more compact. Supports MS SQL, Postgres, Oracle, SQLite, SQL CE and any other DB with ADO.NET provider.
This is an lambda extension of dapper, Chain style makes developers more elegant and intuitive.
MiniDDD Repository for jimu with dapper
ORM dapper
基于dapper拓展的ORM操作类。可以直接使用实体类进行相应的操作,如果db.Insert(Entity);
Simple wrapper with its factory for working with database connections (for Entity Framework Core)
Una abstracción de Unit Of Work y Repository para iniciar el trabajo con Dapper.
System.Data.IDbConnection cnn ; var res0 = cnn.Find<GoodsInfo>().Take1().Ex(); var res5 = cnn.Find<GoodsInfo>().Take(100).Ex(); var res4 = cnn.Find<GoodsInfo>(o => o.GoodsId == 1).Ex(); var res3 = cnn.Find<GoodsInfo>().Sort(o => o.UpdateTime).Take1().Ex(); var res2 = cnn.Find<GoodsInfo>().Sort(o => ...