Skip to content

Commit d2b5e0c

Browse files
fix: Fix indentations for generated SQL statements
1 parent c03c478 commit d2b5e0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Eftdb/Generators/SqlBuilderHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public static void BuildQueryString(List<string> statements, IndentedStringBuild
9393
{
9494
foreach (string statement in statements)
9595
{
96-
builder.AppendLine(statement);
96+
builder.AppendLines(statement, skipFinalNewline: false);
9797
}
9898
}
9999
if (suppressTransaction)

0 commit comments

Comments
 (0)