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

Commit 42ba4c9

Browse files
committed
Merge branch 'master' of github.com:ServiceStack/ServiceStack.OrmLite
2 parents 3c824c7 + 6333cc6 commit 42ba4c9

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
@@ -15,8 +15,8 @@ namespace ServiceStack.OrmLite
1515
{
1616
public abstract partial class SqlExpression<T> : ISqlExpression, IHasUntypedSqlExpression
1717
{
18-
private const string TrueLiteral = "(1=1)";
19-
private const string FalseLiteral = "(1=0)";
18+
protected const string TrueLiteral = "(1=1)";
19+
protected const string FalseLiteral = "(1=0)";
2020

2121
protected bool visitedExpressionIsTableColumn = false;
2222
protected bool skipParameterizationForThisExpression = false;

0 commit comments

Comments
 (0)