Dapper.SimpleCRUD
1.0.4
See the version list below for details.
dotnet add package Dapper.SimpleCRUD --version 1.0.4
NuGet\Install-Package Dapper.SimpleCRUD -Version 1.0.4
<PackageReference Include="Dapper.SimpleCRUD" Version="1.0.4" />
paket add Dapper.SimpleCRUD --version 1.0.4
#r "nuget: Dapper.SimpleCRUD, 1.0.4"
// Install Dapper.SimpleCRUD as a Cake Addin #addin nuget:?package=Dapper.SimpleCRUD&version=1.0.4 // Install Dapper.SimpleCRUD as a Cake Tool #tool nuget:?package=Dapper.SimpleCRUD&version=1.0.4
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
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. 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.8.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 |
* version 1.0: Initial Release
* version 1.0.1: Added comments to methods, refactored get and delete(id) methods to allow only one key in the entity
* version 1.0.2: Added ability to include complex types in insert and update operations by decorating them with the Editable(true) attribute - useful for enumerators
* version 1.0.3: Added GetList() without where filter and corresponding tests. Fixed package reference to Dapper in test project. Fixed bug with null parameter in GetList(object where).
* version 1.0.4: Added nullable types to SimpleTypes allowed list. Add a test for this case. Added sql statements to output window when debugger is attached.