-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0</TargetFrameworks> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Version>2.1.2</Version> | ||
<Version>2.1.3</Version> | ||
<Authors>张强</Authors> | ||
<Company>张强</Company> | ||
<Copyright>Copyright © 2018-2021 , 张强 [email protected]</Copyright> | ||
|
@@ -17,7 +17,7 @@ | |
<PackageReleaseNotes>1.升级SQLBuilder引用;</PackageReleaseNotes> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<PackageId>Zq.SQLBuilder.Core.SkyWalking</PackageId> | ||
<FileVersion>2.1.2.0</FileVersion> | ||
<FileVersion>2.1.3.0</FileVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,19 @@ | |
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0</TargetFrameworks> | ||
<AssemblyVersion>2.1.2.0</AssemblyVersion> | ||
<AssemblyVersion>2.1.3.0</AssemblyVersion> | ||
<Authors>张强</Authors> | ||
<Version>2.1.2</Version> | ||
<Version>2.1.3</Version> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Description>Expression表达式转换为SQL语句,支持SqlServer、MySql、Oracle、Sqlite、PostgreSql;基于Dapper实现了不同数据库对应的数据仓储Repository;</Description> | ||
<Copyright>Copyright © 2018-2021 , 张强 [email protected]</Copyright> | ||
<PackageId>Zq.SQLBuilder.Core</PackageId> | ||
<PackageReleaseNotes>1.优化多表Join,修复实体lambda先后顺序不一致造成的bug; | ||
2.修复部分条件下Where表达式SQL解析错误bug;</PackageReleaseNotes> | ||
<FileVersion>2.1.2.0</FileVersion> | ||
<PackageReleaseNotes>1.优化Select查询,支持自定义动态查询字段内容; | ||
2.优化Where条件,支持Trim、TrimStart、TrimEnd动态条件; | ||
3.优化字段别名; | ||
4.优化查询字段,修复$""形式的字段常量时异常bug; | ||
5.优化SqlBuilderExtensions,新增ToPage、ToDataTable扩展方法;</PackageReleaseNotes> | ||
<FileVersion>2.1.3.0</FileVersion> | ||
<PackageProjectUrl>https://gitee.com/zqlovejyc/SQLBuilder.Core</PackageProjectUrl> | ||
<PackageLicenseUrl></PackageLicenseUrl> | ||
<PackageIcon>sql.png</PackageIcon> | ||
|