Skip to content

Commit aa76330

Browse files
author
zzzprojects
committed
Fix QueryFuture Semicolon
Fix QueryFuture Semicolon
1 parent 1be6c0d commit aa76330

File tree

10 files changed

+14
-9
lines changed

10 files changed

+14
-9
lines changed

src/Z.EntityFramework.Plus.EF5.NET40/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
[assembly: AssemblyCulture("")]
1919
[assembly: ComVisible(false)]
2020
[assembly: Guid("e4c2af73-caeb-4429-bcb6-0a359484e064")]
21-
[assembly: AssemblyVersion("1.2.0")]
22-
[assembly: AssemblyFileVersion("1.2.0")]
21+
[assembly: AssemblyVersion("1.2.1")]
22+
[assembly: AssemblyFileVersion("1.2.1")]

src/Z.EntityFramework.Plus.EF5.NET40/QueryFuture/QueryFutureBatch.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ protected DbCommand CreateCommandCombined()
184184

185185
sb.AppendLine(string.Concat("-- EF+ Query Future: ", queryCount, " of ", Queries.Count));
186186
sb.AppendLine(sql);
187+
sb.Append(";"); // SQL Server, SQL Azure, MySQL
187188
sb.AppendLine();
188189
sb.AppendLine();
189190

src/Z.EntityFramework.Plus.EF5/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
[assembly: AssemblyCulture("")]
1919
[assembly: ComVisible(false)]
2020
[assembly: Guid("abcbb878-043c-4957-a334-90e9872e684e")]
21-
[assembly: AssemblyVersion("1.2.0")]
22-
[assembly: AssemblyFileVersion("1.2.0")]
21+
[assembly: AssemblyVersion("1.2.1")]
22+
[assembly: AssemblyFileVersion("1.2.1")]

src/Z.EntityFramework.Plus.EF5/QueryFuture/QueryFutureBatch.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ protected DbCommand CreateCommandCombined()
184184

185185
sb.AppendLine(string.Concat("-- EF+ Query Future: ", queryCount, " of ", Queries.Count));
186186
sb.AppendLine(sql);
187+
sb.Append(";"); // SQL Server, SQL Azure, MySQL
187188
sb.AppendLine();
188189
sb.AppendLine();
189190

src/Z.EntityFramework.Plus.EF6.NET40/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
[assembly: AssemblyCulture("")]
1919
[assembly: ComVisible(false)]
2020
[assembly: Guid("ac398eb8-0a31-4d06-a804-84d10b6da96d")]
21-
[assembly: AssemblyVersion("1.2.0")]
22-
[assembly: AssemblyFileVersion("1.2.0")]
21+
[assembly: AssemblyVersion("1.2.1")]
22+
[assembly: AssemblyFileVersion("1.2.1")]

src/Z.EntityFramework.Plus.EF6.NET40/QueryFuture/QueryFutureBatch.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ protected DbCommand CreateCommandCombined()
184184

185185
sb.AppendLine(string.Concat("-- EF+ Query Future: ", queryCount, " of ", Queries.Count));
186186
sb.AppendLine(sql);
187+
sb.Append(";"); // SQL Server, SQL Azure, MySQL
187188
sb.AppendLine();
188189
sb.AppendLine();
189190

src/Z.EntityFramework.Plus.EF6/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
[assembly: AssemblyCulture("")]
1919
[assembly: ComVisible(false)]
2020
[assembly: Guid("89f47e22-ff83-4ac8-be90-c6755748cf89")]
21-
[assembly: AssemblyVersion("1.2.0")]
22-
[assembly: AssemblyFileVersion("1.2.0")]
21+
[assembly: AssemblyVersion("1.2.1")]
22+
[assembly: AssemblyFileVersion("1.2.1")]

src/Z.EntityFramework.Plus.EF6/QueryFuture/QueryFutureBatch.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ protected DbCommand CreateCommandCombined()
184184

185185
sb.AppendLine(string.Concat("-- EF+ Query Future: ", queryCount, " of ", Queries.Count));
186186
sb.AppendLine(sql);
187+
sb.Append(";"); // SQL Server, SQL Azure, MySQL
187188
sb.AppendLine();
188189
sb.AppendLine();
189190

src/Z.EntityFramework.Plus.EFCore/QueryFuture/QueryFutureBatch.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ protected DbCommand CreateCommandCombined()
184184

185185
sb.AppendLine(string.Concat("-- EF+ Query Future: ", queryCount, " of ", Queries.Count));
186186
sb.AppendLine(sql);
187+
sb.Append(";"); // SQL Server, SQL Azure, MySQL
187188
sb.AppendLine();
188189
sb.AppendLine();
189190

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.2.0
1+
v1.2.1

0 commit comments

Comments
 (0)