Dapper.SimpleCRUD
1.8.1
See the version list below for details.
dotnet add package Dapper.SimpleCRUD --version 1.8.1
NuGet\Install-Package Dapper.SimpleCRUD -Version 1.8.1
<PackageReference Include="Dapper.SimpleCRUD" Version="1.8.1" />
paket add Dapper.SimpleCRUD --version 1.8.1
#r "nuget: Dapper.SimpleCRUD, 1.8.1"
// Install Dapper.SimpleCRUD as a Cake Addin #addin nuget:?package=Dapper.SimpleCRUD&version=1.8.1 // Install Dapper.SimpleCRUD as a Cake Tool #tool nuget:?package=Dapper.SimpleCRUD&version=1.8.1
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
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- Dapper (>= 1.38.0 && < 2.0.0)
NuGet packages (38)
Showing the top 5 NuGet packages that depend on Dapper.SimpleCRUD:
Package | Downloads |
---|---|
EachShow.DataAccess.Core
Package Description |
|
Edakik.Shared.Library
Package Description |
|
TianFeng.FrameworkCore
天枫 .net core 组件,支持.net6 |
|
YuckQi.Data.Sql.Dapper
An implementation of YuckQi.Data for SQL databases using Dapper and SimpleCRUD. |
|
Cigel.DotNetCore
Package Description |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on Dapper.SimpleCRUD:
Repository | Stars |
---|---|
yilezhu/Czar.Cms
.NET Core实战项目之CMS系列教程的源码,精简而又功能丰富的权限设计,内容管理设计让你轻松搭建一个ASP.NET Core2.2的网站系统.此项目准备用EFCore进行重构,敬请期待
|
|
MoonStorm/FastCrud
fast .NET ORM for strongly typed people
|
Version | Downloads | Last updated |
---|---|---|
2.3.0 | 1,752,501 | 3/15/2021 |
2.2.0.1 | 1,350,972 | 12/18/2019 |
2.2.0 | 224,834 | 10/2/2019 |
2.1.0 | 335,978 | 2/22/2019 |
2.0.1 | 186,398 | 10/2/2018 |
2.0.0 | 51,396 | 7/12/2018 |
2.0.0-beta | 3,022 | 7/9/2018 |
1.13.0 | 310,469 | 9/19/2016 |
1.12.0 | 12,560 | 8/1/2016 |
1.11.1 | 12,122 | 6/16/2016 |
1.11.0 | 3,947 | 6/15/2016 |
1.10.0 | 25,576 | 12/3/2015 |
1.9.3 | 4,127 | 12/1/2015 |
1.9.2 | 15,035 | 10/27/2015 |
1.9.1 | 6,936 | 8/29/2015 |
1.9.0 | 4,818 | 7/27/2015 |
1.9.0-beta | 3,120 | 7/22/2015 |
1.8.7 | 48,733 | 5/14/2015 |
1.8.6 | 8,743 | 4/23/2015 |
1.8.5 | 21,788 | 2/27/2015 |
1.8.4 | 3,770 | 2/8/2015 |
1.8.3 | 3,671 | 1/30/2015 |
1.8.2 | 3,445 | 1/20/2015 |
1.8.1 | 3,346 | 1/19/2015 |
1.8.0 | 3,864 | 1/19/2015 |
1.7.0 | 3,558 | 1/9/2015 |
1.6.0 | 3,734 | 12/30/2014 |
1.4.1 | 6,496 | 6/23/2014 |
1.4.0 | 3,577 | 6/4/2014 |
1.3.0 | 4,109 | 12/19/2013 |
1.2.2 | 4,557 | 7/4/2013 |
1.2.1 | 3,721 | 7/4/2013 |
1.2.0 | 3,736 | 3/18/2013 |
1.1.4 | 3,568 | 2/14/2013 |
1.1.3 | 3,463 | 2/4/2013 |
1.1.2 | 3,551 | 2/4/2013 |
1.1.1 | 3,453 | 2/4/2013 |
1.1.0 | 3,570 | 1/25/2013 |
1.0.7 | 3,411 | 1/23/2013 |
1.0.6 | 3,454 | 1/17/2013 |
1.0.5 | 3,536 | 1/8/2013 |
1.0.4 | 3,498 | 1/8/2013 |
1.0.3 | 3,634 | 1/4/2013 |
1.0.2 | 3,565 | 12/26/2012 |
1.0.1 | 3,423 | 12/24/2012 |
1.0.0 | 4,169 | 12/24/2012 |
Full documentation can be found at https://github.com/ericdc1/Dapper.SimpleCRUD/
* version 1.3.0: Support for multiple schemas, non int primary keys. Fixed issue with editable attribute annotations. Made enums be considered "editable" so you can have integers in the database and represent them as enums in the code and have SimpleCRUD map them without extra pain.
* version 1.4.0: Switched to using Nullable.GetUnderlyingType(type) so we don't need to explicitly check for all nullable types. This also has the side effect of fixing checks for nullable enums without the editable attribute.
* version 1.4.1: Added support for short and long primary key types on insert method
* version 1.5.0 Target .Net 4.5, support for PostgreSQL, SQL Server now uses scope_identity on insert rather than @@identity. Add support for GUID primary keys
* version 1.6.0 Target .Net 4.0 and 4.5 and add async support / remove SQLCE support Special thanks to https://github.com/Prnda1976 for help with the pull request backlog
* version 1.7.0 Added column attribute and made gets specify column names rather than select * . Changed GUID to autogenerate when the property value is empty. Ability to change database dialect from SQL Server to PostgreSQL.
* version 1.8.0 Added support and tests for SQLite. Added additional GetList method that accepts a raw SQL where clause for more advanced queries.