Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 2290cad

Browse files
committed
Add missing AppendLine
1 parent a74f730 commit 2290cad

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/ServiceStack.OrmLite/Expressions/SqlExpression.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ public string ComputeHash(bool includeParams=true)
168168
sb.Append(skipParameterizationForThisExpression ? "1" : "0");
169169
sb.Append(UseSelectPropertiesAsAliases ? "1" : "0");
170170
sb.Append(hasEnsureConditions ? "1" : "0");
171+
sb.AppendLine();
171172

172173
if (includeParams && Params.Count > 0)
173174
{

0 commit comments

Comments
 (0)