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

Commit a74f730

Browse files
committed
Use selectExpression
1 parent 791fc7e commit a74f730

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ServiceStack.OrmLite/Expressions/SqlExpression.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ public string ComputeHash(bool includeParams=true)
125125
{
126126
var sb = StringBuilderCache.Allocate();
127127

128-
if (!string.IsNullOrEmpty(SelectExpression))
129-
sb.AppendLine(SelectExpression);
128+
if (!string.IsNullOrEmpty(selectExpression))
129+
sb.AppendLine(selectExpression);
130130
if (!OnlyFields.IsEmpty())
131131
sb.AppendLine(OnlyFields.Join(","));
132132

0 commit comments

Comments
 (0)