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

Commit f72d4a6

Browse files
committed
Change access modifier for TrueLiteral, FalseLiteral to protected
1 parent 301519d commit f72d4a6

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)