DapperDal 1.5.14
See the version list below for details.
dotnet add package DapperDal --version 1.5.14
NuGet\Install-Package DapperDal -Version 1.5.14
<PackageReference Include="DapperDal" Version="1.5.14" />
paket add DapperDal --version 1.5.14
#r "nuget: DapperDal, 1.5.14"
// Install DapperDal as a Cake Addin #addin nuget:?package=DapperDal&version=1.5.14 // Install DapperDal as a Cake Tool #tool nuget:?package=DapperDal&version=1.5.14
用 Dapper、Dapper-Extensions、Abp.Dapper 封装的数据访问层
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.50.2)
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,737 | 8/29/2017 |
1.5.18 | 997 | 8/21/2017 |
1.5.17 | 1,096 | 8/20/2017 |
1.5.16 | 1,137 | 6/9/2017 |
1.5.15 | 985 | 6/5/2017 |
1.5.14 | 990 | 5/12/2017 |
1.5.13 | 996 | 4/30/2017 |
1.5.12 | 972 | 4/27/2017 |
1.5.11 | 1,007 | 4/26/2017 |
1.5.10 | 985 | 4/26/2017 |
1.5.9 | 987 | 4/26/2017 |
1.5.8 | 1,006 | 4/4/2017 |
1.5.7 | 1,079 | 4/4/2017 |
1.5.6 | 1,007 | 3/31/2017 |
1.5.5 | 987 | 3/30/2017 |
1.5.4 | 1,009 | 3/30/2017 |
1.5.3 | 979 | 3/27/2017 |
1.5.2.3 | 991 | 3/27/2017 |
1.5.2.1 | 965 | 3/27/2017 |
1.5.2 | 1,238 | 3/26/2017 |
### 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)