DapperDal 1.5.19

dotnet add package DapperDal --version 1.5.19
NuGet\Install-Package DapperDal -Version 1.5.19
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="DapperDal" Version="1.5.19" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DapperDal --version 1.5.19
#r "nuget: DapperDal, 1.5.19"
#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 DapperDal as a Cake Addin
#addin nuget:?package=DapperDal&version=1.5.19

// Install DapperDal as a Cake Tool
#tool nuget:?package=DapperDal&version=1.5.19

基于 Dapper、Dapper-Extensions 构建的微型 ORM 类库,提供一个包含增、删、改、查等常用方法的数据访问层基类,支持用 Lambda 表达式书写查询和更新条件

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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.5.19 1,669 8/29/2017
1.5.18 964 8/21/2017
1.5.17 1,062 8/20/2017
1.5.16 1,111 6/9/2017
1.5.15 975 6/5/2017
1.5.14 964 5/12/2017
1.5.13 968 4/30/2017
1.5.12 960 4/27/2017
1.5.11 982 4/26/2017
1.5.10 961 4/26/2017
1.5.9 964 4/26/2017
1.5.8 983 4/4/2017
1.5.7 1,055 4/4/2017
1.5.6 982 3/31/2017
1.5.5 960 3/30/2017
1.5.4 980 3/30/2017
1.5.3 954 3/27/2017
1.5.2.3 964 3/27/2017
1.5.2.1 941 3/27/2017
1.5.2 1,211 3/26/2017

1.5.19
     * 逻辑删除方法 SoftDelete、SwitchActive 默认更新字段 UpdateTime = DateTime.Now
     1.5.18
     * 添加返回 DataSet 的查询方法:QueryDataSet
     1.5.16
     * 重构,合并 Dapper-Extensions 到 DapperDal,然后移除 Dapper-Extensions
     1.5.15
     * 删除方法 QueryFirstOrDefault,可以使用 QueryFirst 替换
     * 添加重载方法 OpenConnection、Execute、Query, 支持传入其他 DB 连接串
     1.5.14
     * 添加逻辑删除或激活方法 SwitchActive
     * 删除方法 GetFirstOrDefault,可以使用 GetFirst 替换
     * 添加支持主键 ID 的重载方法 Update、Delete
     * 配置项 SoftDeleteProp 迁移到 DapperDal 中,新添加配置项 SoftActiveProps
     1.5.13
     * 添加谓词表达式组合扩展方法(来自alexfoxgill/ExpressionTools)
     1.5.12
     * 优化 Exsit 、Count 方法
     1.5.11
     * 优化更新方法,支持传递小写字段名
     * 添加判断实体是否存在方法:Exsit
     1.5.10
     * 添加逻辑删除方法 SoftDeleteById
     1.5.9
     * 添加实体查询方法:GetFirstOrDefault 、QueryFirstOrDefault 、QueryFirst
     1.5.8
     * 添加SQL执行方法:Execute 、ExecuteScalar
     1.5.7
     * 添加实体查询方法:GetFirst 、GetTop
     * 优化实体查询方法,添加实体集合返回前是否要缓冲的设置点
     * 优化逻辑删除,添加更新属性及值的设置点
     1.5.6
     * 生成查询 SQL 时,添加 WITH (NOLOCK)
     * 添加设置项:SQL 输出方法
     1.5.5
     * 添加逻辑删除方法 SoftDelete
     1.5.4
     * 表达式转换用 QueryBuilder 替换 ExpressionVisitor 实现,以支持多个查询条件
     1.5.3
     * 添加支持多个实体查询的 Query 方法
     1.5.2
     * 添加更新部分属性的 Update 方法(来自vilix13/Dapper-Extensions)
     * 添加使用谓词、匿名对象或 lambda 表达式作条件的 Update 方法
     1.5.1
     * 整合 Abp.Dapper,为 Dapper-Extensions 添加 lambda 表达式功能(来自Abp.Dapper)