ZibStack.NET.Dapper 2.1.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package ZibStack.NET.Dapper --version 2.1.4
                    
NuGet\Install-Package ZibStack.NET.Dapper -Version 2.1.4
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ZibStack.NET.Dapper" Version="2.1.4">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ZibStack.NET.Dapper" Version="2.1.4" />
                    
Directory.Packages.props
<PackageReference Include="ZibStack.NET.Dapper">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ZibStack.NET.Dapper --version 2.1.4
                    
#r "nuget: ZibStack.NET.Dapper, 2.1.4"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package ZibStack.NET.Dapper@2.1.4
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ZibStack.NET.Dapper&version=2.1.4
                    
Install as a Cake Addin
#tool nuget:?package=ZibStack.NET.Dapper&version=2.1.4
                    
Install as a Cake Tool

ZibStack.NET.Dapper

Dapper integration for ZibStack.NET.Dto CRUD API — provides a DapperCrudStore<TEntity, TKey> base class via source generation.

Install

dotnet add package ZibStack.NET.Dapper

Quick Start

public class PlayerStore : DapperCrudStore<Player, int>
{
    public PlayerStore(IDbConnection db) : base(db) { }
    protected override string TableName => "Players";
}

// Program.cs
builder.Services.AddScoped<IDbConnection>(_ =>
    new SqliteConnection("Data Source=app.db"));
builder.Services.AddScoped<ICrudStore<Player, int>, PlayerStore>();

Documentation

Full documentation: mistykuu.github.io/ZibStack.NET/packages/dapper/

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.7.0 0 4/16/2026
2.6.0 0 4/16/2026
2.5.9 0 4/16/2026
2.5.8 0 4/16/2026
2.5.7 0 4/16/2026
2.5.6 0 4/16/2026
2.5.5 0 4/16/2026
2.5.2 3 4/16/2026
2.5.1 25 4/16/2026
2.5.0 47 4/15/2026
2.4.3 24 4/16/2026
2.4.0 48 4/15/2026
2.3.1 46 4/14/2026
2.3.0 52 4/14/2026
2.2.4 48 4/14/2026
2.2.3 45 4/14/2026
2.2.2 47 4/14/2026
2.2.1 42 4/14/2026
2.2.0 43 4/14/2026
2.1.4 49 4/12/2026
Loading failed