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

Commit eef661f

Browse files
committed
Change access modifiers
1 parent f84895d commit eef661f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ServiceStack.OrmLite/Expressions/SqlExpression.cs

Lines changed: 3 additions & 3 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-
protected const string TrueLiteral = "(1=1)";
19-
protected const string FalseLiteral = "(1=0)";
18+
public const string TrueLiteral = "(1=1)";
19+
public const string FalseLiteral = "(1=0)";
2020

2121
protected bool visitedExpressionIsTableColumn = false;
2222
protected bool skipParameterizationForThisExpression = false;
@@ -1207,7 +1207,7 @@ protected internal bool UseFieldName
12071207
}
12081208
}
12091209

1210-
protected internal virtual object Visit(Expression exp)
1210+
public virtual object Visit(Expression exp)
12111211
{
12121212
visitedExpressionIsTableColumn = false;
12131213

0 commit comments

Comments
 (0)