DapperExtensions.Lambda 3.0.0.26-alpha

This is a prerelease version of DapperExtensions.Lambda.
dotnet add package DapperExtensions.Lambda --version 3.0.0.26-alpha
                    
NuGet\Install-Package DapperExtensions.Lambda -Version 3.0.0.26-alpha
                    
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="DapperExtensions.Lambda" Version="3.0.0.26-alpha" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DapperExtensions.Lambda" Version="3.0.0.26-alpha" />
                    
Directory.Packages.props
<PackageReference Include="DapperExtensions.Lambda" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DapperExtensions.Lambda --version 3.0.0.26-alpha
                    
#r "nuget: DapperExtensions.Lambda, 3.0.0.26-alpha"
                    
#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.
#:package DapperExtensions.Lambda@3.0.0.26-alpha
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DapperExtensions.Lambda&version=3.0.0.26-alpha&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=DapperExtensions.Lambda&version=3.0.0.26-alpha&prerelease
                    
Install as a Cake Tool

基于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 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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
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
3.0.0.26-alpha 350 11/9/2021
3.0.0.24-alpha 334 11/2/2021
3.0.0.23-alpha 325 10/20/2021
3.0.0.22-alpha 328 10/20/2021
3.0.0.21 523 10/19/2021
3.0.0.20 456 10/19/2021
3.0.0.19 530 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 完善异步方法