Learn Dapper: https://www.learndapper.com/
Dapper Tutorial: https://dappertutorial.net/
Info
Version: | 2.3.0 |
Author(s): | Eric Coffman |
Last Update: | Monday, March 15, 2021 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | http://github.com/ericdc1/Dapper.SimpleCRUD/ |
NuGet Url: | https://www.nuget.org/packages/Dapper.SimpleCRUD |
Install
Install-Package Dapper.SimpleCRUD
dotnet add package Dapper.SimpleCRUD
paket add Dapper.SimpleCRUD
Dapper.SimpleCRUD Download (Unzip the "nupkg" after downloading)
Dependencies
- Microsoft.CSharp(>= 4.4.0)
- Dapper(>= 2.0.0)
Tags
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 MySQL
- Includes async methods
- Supports .Net Core.