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

Commit 9defd2a

Browse files
committed
Change access modifier for InternalJoin to protected and virtual
1 parent 4ad42dc commit 9defd2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStack.OrmLite/Expressions/SqlExpression.Join.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public SqlExpression<T> CustomJoin(string joinString)
166166
return this;
167167
}
168168

169-
private SqlExpression<T> InternalJoin(string joinType, Expression joinExpr, ModelDefinition sourceDef, ModelDefinition targetDef, JoinFormatDelegate joinFormat = null)
169+
protected virtual SqlExpression<T> InternalJoin(string joinType, Expression joinExpr, ModelDefinition sourceDef, ModelDefinition targetDef, JoinFormatDelegate joinFormat = null)
170170
{
171171
PrefixFieldWithTableName = true;
172172

0 commit comments

Comments
 (0)