Top 20 NuGet dapper Packages
Track row change history across your database by user, with key-to-text lookups
ADO.NET 数据库访问。
基于Dapper数据库操作辅助类库,欢迎RP以及Star。具体使用参考:https://github.com/YanZhiwei/XiangJiang.Infrastructure.Orm.Dapper
ORM框架
Generic Data Access Object Interfaces
Dapper database agnostic SELECT, INSERT, UPDATE, DELETE, MERGE operations and a file or resource database migration tool
Runs Dapper queries using SqlGenerator for generating and caching SQL, does not have any dependencies other than Dapper and generates modern SQL depending on a connection type while being fully customizable
A set of extensions for working with HotChocolate GraphQL and RepoDb as the data access micro-orm without dependency on IQueryable. This enables fully encapsulated control over SQL queries in every way within a Service or Repository layer of your application. This extension pack provides a signific...
封装Dapper操作类
update version .net 5
Moq extensions for Dapper methods.
Spear Dapper For SQLite
Spear Dapper For MySql
Package Description
A set of extensions for working with HotChocolate GraphQL and Database access with micro-orms such as RepoDb (or Dapper). This extension pack provides access to key elements such as Selections/Projections, Sort arguments, & Paging arguments in a significantly simplified facade so this logic can be ...
Package Description
A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite etc..
DrivenDb is a better microORM. Unique features, excellent performance, and cleaner code in as few trips to the database as possible.
The connection management wrapper for Dapper.net.
***************************************
// To create an instance of database context inherit DbContext
class TestDb : DbContext
{
private const string ConnectionName = "DefaultConnection";
private TestDb()
: base(ConnectionName)
{ }
}
// e...