We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6c59fc commit bf4e3c2Copy full SHA for bf4e3c2
QueryBuilder/Compilers/Compiler.cs
@@ -30,6 +30,12 @@ protected Compiler()
30
/// <value></value>
31
public virtual bool SupportsFilterClause { get; set; } = false;
32
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
+
39
protected virtual string SingleRowDummyTableName { get => null; }
40
41
/// <summary>
0 commit comments