Dapper.SimpleCRUD 1.0.7

There is a newer version of this package available.
See the version list below for details.
dotnet add package Dapper.SimpleCRUD --version 1.0.7
NuGet\Install-Package Dapper.SimpleCRUD -Version 1.0.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Dapper.SimpleCRUD" Version="1.0.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Dapper.SimpleCRUD --version 1.0.7
#r "nuget: Dapper.SimpleCRUD, 1.0.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Dapper.SimpleCRUD as a Cake Addin
#addin nuget:?package=Dapper.SimpleCRUD&version=1.0.7

// Install Dapper.SimpleCRUD as a Cake Tool
#tool nuget:?package=Dapper.SimpleCRUD&version=1.0.7

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
    • Dapper (>= 1.0.0 && < 2.0.0)

NuGet packages (37)

Showing the top 5 NuGet packages that depend on Dapper.SimpleCRUD:

Package Downloads
Edakik.Shared.Library

Package Description

EachShow.DataAccess.Core

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 & light .NET ORM for strongly typed people
Version Downloads Last updated
2.3.0 1,286,852 3/15/2021
2.2.0.1 1,261,033 12/18/2019
2.2.0 202,362 10/2/2019
2.1.0 301,027 2/22/2019
2.0.1 179,749 10/2/2018
2.0.0 49,500 7/12/2018
2.0.0-beta 2,759 7/9/2018
1.13.0 292,390 9/19/2016
1.12.0 12,242 8/1/2016
1.11.1 11,713 6/16/2016
1.11.0 3,688 6/15/2016
1.10.0 23,836 12/3/2015
1.9.3 3,858 12/1/2015
1.9.2 13,164 10/27/2015
1.9.1 6,447 8/29/2015
1.9.0 4,474 7/27/2015
1.9.0-beta 2,871 7/22/2015
1.8.7 48,325 5/14/2015
1.8.6 8,175 4/23/2015
1.8.5 21,185 2/27/2015
1.8.4 3,526 2/8/2015
1.8.3 3,423 1/30/2015
1.8.2 3,163 1/20/2015
1.8.1 3,104 1/19/2015
1.8.0 3,630 1/19/2015
1.7.0 3,286 1/9/2015
1.6.0 3,466 12/30/2014
1.4.1 6,076 6/23/2014
1.4.0 3,287 6/4/2014
1.3.0 3,792 12/19/2013
1.2.2 4,282 7/4/2013
1.2.1 3,453 7/4/2013
1.2.0 3,475 3/18/2013
1.1.4 3,309 2/14/2013
1.1.3 3,222 2/4/2013
1.1.2 3,286 2/4/2013
1.1.1 3,168 2/4/2013
1.1.0 3,335 1/25/2013
1.0.7 3,146 1/23/2013
1.0.6 3,213 1/17/2013
1.0.5 3,280 1/8/2013
1.0.4 3,242 1/8/2013
1.0.3 3,362 1/4/2013
1.0.2 3,313 12/26/2012
1.0.1 3,199 12/24/2012
1.0.0 3,792 12/24/2012

Full documentation can be found at https://github.com/ericdc1/Dapper.SimpleCRUD/
     * 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.
     * version 1.0.5: Updated documentation
     * version 1.0.6: Allow newer Dapper version
     * version 1.0.7: Fix bug when last property is a key and generated sql ended with trailing comma. Added T4 template to generate POCOs. Added sample website project using the T4 and SimpleCRUD