Skip to content

Commit e9eab67

Browse files
authored
Fix LINQ cross join issue with InformixDialect (#3313)
Fixes #3294
1 parent c030026 commit e9eab67

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/NHibernate/Dialect/InformixDialect.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,9 @@ public override JoinFragment CreateOuterJoinFragment()
333333
return new InformixJoinFragment();
334334
}
335335

336+
/// <inheritdoc />
337+
public override bool SupportsCrossJoin => false;
338+
336339
/// <summary> The SQL literal value to which this database maps boolean values. </summary>
337340
/// <param name="value">The boolean value </param>
338341
/// <returns> The appropriate SQL literal. </returns>

src/NHibernate/Dialect/InformixDialect0940.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,7 @@ public override JoinFragment CreateOuterJoinFragment()
126126
return new ANSIJoinFragment();
127127
}
128128

129-
/// <inheritdoc />
130-
public override bool SupportsCrossJoin => false;
131-
132-
/// <summary>
129+
/// <summary>
133130
/// Does this Dialect have some kind of <c>LIMIT</c> syntax?
134131
/// </summary>
135132
/// <value>False, unless overridden.</value>

0 commit comments

Comments
 (0)