Skip to content

Commit bf4e3c2

Browse files
iss-581: add 'OmitSelectInsideExists' prop to compiler
1 parent f6c59fc commit bf4e3c2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

QueryBuilder/Compilers/Compiler.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ protected Compiler()
3030
/// <value></value>
3131
public virtual bool SupportsFilterClause { get; set; } = false;
3232

33+
/// <summary>
34+
/// If true the compiler will remove the SELECT clause for the query used inside WHERE EXISTS
35+
/// </summary>
36+
/// <value></value>
37+
public virtual bool OmitSelectInsideExists { get; set; } = true;
38+
3339
protected virtual string SingleRowDummyTableName { get => null; }
3440

3541
/// <summary>

0 commit comments

Comments
 (0)