Learn Dapper: https://www.learndapper.com/
Dapper Tutorial: https://dappertutorial.net/
Info
Version: | 1.8.6 |
Author(s): | Eric Coffman-Claudio Barca |
Last Update: | Wednesday, July 15, 2015 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | http://github.com/ericdc1/Dapper.SimpleCRUD/ |
NuGet Url: | https://www.nuget.org/packages/Dapper.SimpleCRUD.clabnet |
Install
Install-Package Dapper.SimpleCRUD.clabnet
dotnet add package Dapper.SimpleCRUD.clabnet
paket add Dapper.SimpleCRUD.clabnet
Dapper.SimpleCRUD.clabnet Download (Unzip the "nupkg" after downloading)
Tags
This patch was required to insert tables with primary key named as "Id" but NOT autoincrement value.
Simple Get, GetList, Insert, Update, and Delete extensions for Dapper.
Uses smart defaults for attribute free classes but can be overridden as needed.
By default uses Id column as the primary key but this can be overridden with an attribute
By default queries the table matching the class name but this can be overridden with an attribute
By default queries the column matching the property name but this can be overridden with an attribute
- Supports SQL Server, PostgreSQL, and SQLite
- Includes async methods when targeting .Net 4.5.