Skip to content

Commit e0f27c7

Browse files
committed
fix Issue #127
1 parent 4900f06 commit e0f27c7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/FluentNHibernate/Mapping/JoinPart.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,10 @@ public JoinPart<T> Not
129129
/// Specify the table name
130130
/// </summary>
131131
/// <param name="tableName">Table name</param>
132-
public void Table(string tableName)
132+
public JoinPart<T> Table(string tableName)
133133
{
134134
attributes.Set("TableName", Layer.UserSupplied, tableName);
135+
return this;
135136
}
136137

137138
JoinMapping IJoinMappingProvider.GetJoinMapping()

0 commit comments

Comments
 (0)