6 references to Except
System.Data.Entity (6)
System\Data\Common\CommandTrees\RelationalExpressions.cs (1)
158: base(DbExpressionKind.Except, resultType, left, right)
System\Data\Query\PlanCompiler\ITreeGenerator.cs (2)
1591PlanCompiler.Assert(DbExpressionKind.Except == expression.ExpressionKind || 1623case DbExpressionKind.Except:
System\Data\SqlClient\SqlGen\Sql8ExpressionRewriter.cs (3)
75return TransformIntersectOrExcept(VisitExpression(e.Left), VisitExpression(e.Right), DbExpressionKind.Except); 210bool negate = (expressionKind == DbExpressionKind.Except) || (expressionKind == DbExpressionKind.Skip); 211bool distinct = (expressionKind == DbExpressionKind.Except) || (expressionKind == DbExpressionKind.Intersect);