Skip to content

Commit cafeaba

Browse files
lesnyhhazzik
authored andcommitted
NH-3739 - Fix usage of SqlString.Append method in AbstractStatementExecutor
1 parent 5e3f957 commit cafeaba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NHibernate/Hql/Ast/ANTLR/Exec/AbstractStatementExecutor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ protected SqlString GenerateIdInsertSelect(IQueryable persister, string tableAli
8585
}
8686
if (whereJoinFragment.Length > 0)
8787
{
88-
whereJoinFragment.Append(" and ");
88+
whereJoinFragment = whereJoinFragment.Append(" and ");
8989
}
9090
}
9191

0 commit comments

Comments
 (0)