Browse Source

4.2.3.2

pull/12/MERGE
sunkaixuan 7 years ago
parent
commit
29f0f60163
  1. 4
      Src/Asp.Net/SqlSugar/Properties/AssemblyInfo.cs
  2. 1
      Src/Asp.Net/SqlSugar/Realization/MySql/SqlBuilder/MySqlQueryBuilder.cs
  3. 1
      Src/Asp.Net/SqlSugar/Realization/Sqlite/SqlBuilder/SqliteQueryBuilder.cs

4
Src/Asp.Net/SqlSugar/Properties/AssemblyInfo.cs

@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("4.2.3.2")]
[assembly: AssemblyFileVersion("4.2.3.2")]
[assembly: AssemblyVersion("4.2.3.3")]
[assembly: AssemblyFileVersion("4.2.3.3")]

1
Src/Asp.Net/SqlSugar/Realization/MySql/SqlBuilder/MySqlQueryBuilder.cs

@ -70,7 +70,6 @@ namespace SqlSugar
{
get
{
if (this.IsCount) return "COUNT(1) AS `Count` ";
string reval = string.Empty;
if (this.SelectValue == null || this.SelectValue is string)
{

1
Src/Asp.Net/SqlSugar/Realization/Sqlite/SqlBuilder/SqliteQueryBuilder.cs

@ -70,7 +70,6 @@ namespace SqlSugar
{
get
{
if (this.IsCount) return "COUNT(1) AS `Count` ";
string reval = string.Empty;
if (this.SelectValue == null || this.SelectValue is string)
{

Loading…
Cancel
Save