DapperExtensions.Lambda
3.0.0.26-alpha
dotnet add package DapperExtensions.Lambda --version 3.0.0.26-alpha
NuGet\Install-Package DapperExtensions.Lambda -Version 3.0.0.26-alpha
<PackageReference Include="DapperExtensions.Lambda" Version="3.0.0.26-alpha" />
paket add DapperExtensions.Lambda --version 3.0.0.26-alpha
#r "nuget: DapperExtensions.Lambda, 3.0.0.26-alpha"
// Install DapperExtensions.Lambda as a Cake Addin #addin nuget:?package=DapperExtensions.Lambda&version=3.0.0.26-alpha&prerelease // Install DapperExtensions.Lambda as a Cake Tool #tool nuget:?package=DapperExtensions.Lambda&version=3.0.0.26-alpha&prerelease
基于DapperExtensions 做了大量定制化开发,主要是为了更好的支持 拉姆达表达式,以及对.NET CORE 5的支持
2021-11-2 V3.0.0.24-alpha 完善异步方法
2021-10-19 V3.0.0.20 修复未指定 workid时自动产生的 work id 超最大限制31的BUG
2021-1-3 V3.0.0.17 修复分页关键字处理的一个BUG
2021-1-3 V3.0.0.17 修复分页关键字处理的一个BUG
2020-12-17 V3.0.0.16 ID自动生成,只补全ID
2020-9-24 V3.0.0.15 sql输出改成console输出
2020-9-24 V3.0.0.13 分页BUG修复。
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- Dapper (>= 2.0.4)
- MongoDB.Bson (>= 2.13.1)
- Snowflake.Core (>= 2.0.0)
-
net5.0
- Dapper (>= 2.0.4)
- MongoDB.Bson (>= 2.13.1)
- Snowflake.Core (>= 2.0.0)
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 |
---|---|---|
3.0.0.26-alpha | 250 | 11/9/2021 |
3.0.0.24-alpha | 244 | 11/2/2021 |
3.0.0.23-alpha | 236 | 10/20/2021 |
3.0.0.22-alpha | 237 | 10/20/2021 |
3.0.0.21 | 422 | 10/19/2021 |
3.0.0.20 | 362 | 10/19/2021 |
3.0.0.19 | 435 | 9/8/2021 |
基于DapperExtensions 做了大量定制化开发,主要是为了更好的支持 拉姆达表达式,以及对.NET CORE 5的支持
2021-11-9 V3.0.0.26-alpha 增加对连接查询的的辅助方法
实体使用[ForeignKey]指定外键字段,通过QueryRelationalAsync 查询,使用func<TMain,TRef1...>委托处理外键导航字段。
public class EntityTest
{
[key]
public string Id{get;set;}
....
[ForeignKey("poc_task_id")]
public POCTask pOCTask { get; set; }
}
2021-11-2 V3.0.0.25-alpha 更改原来通过Id字符识别主键的方式,改为通过 [key]特性识别。
2021-11-2 V3.0.0.24-alpha 完善异步方法