Learn Dapper: https://www.learndapper.com/
Dapper Tutorial: https://dappertutorial.net/
Info
Version: | 2.3.1 |
Author(s): | Eric Coffman (original), Michal Jasikowski (fork) |
Last Update: | Tuesday, July 13, 2021 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | http://github.com/yasikovsky/Dapper.SimpleCRUD/ |
NuGet Url: | https://www.nuget.org/packages/Dapper.SimpleCRUD.yasikovsky |
Install
Install-Package Dapper.SimpleCRUD.yasikovsky
dotnet add package Dapper.SimpleCRUD.yasikovsky
paket add Dapper.SimpleCRUD.yasikovsky
Dapper.SimpleCRUD.yasikovsky Download (Unzip the "nupkg" after downloading)
Dependencies
- Microsoft.CSharp(>= 4.4.0)
- Dapper(>= 2.0.35)
Tags
It has integrated the following fixes and enhancements:
- Added automatic casting for PostgreSQL JSON based on the presence of [JsonColumn] property attribute (https://github.com/yasikovsky/Dapper.SimpleCRUD/commit/97e532d8d4e9b604246873f8593d60327e65ac53)
- Support for custom type parameters (https://github.com/ericdc1/Dapper.SimpleCRUD/pull/221) by CyrilB1531
- Support for anonymous object conditions with arrays (https://github.com/ericdc1/Dapper.SimpleCRUD/pull/225) by Alexandr Parashin (SwopDaWoop)
Simple Get, GetList, GetListPaged, Insert, Update, Delete, DeleteList, and RecordCount 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 MySQL
- Includes async methods
- Supports .Net Core.