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

Commit 9e86c30

Browse files
committed
Expose IsJoinedTable()
1 parent b4a31c4 commit 9e86c30

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

lib/ServiceStack.Interfaces.dll

1 KB
Binary file not shown.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public abstract partial class SqlExpression<T> : ISqlExpression
1010
{
1111
List<ModelDefinition> tableDefs = new List<ModelDefinition>();
1212

13-
bool IsJoinedTable(Type type)
13+
public bool IsJoinedTable(Type type)
1414
{
1515
return tableDefs.FirstOrDefault(x => x.ModelType == type) != null;
1616
}

0 commit comments

Comments
 (0)