1 instantiation of DbExceptExpression
System.Data.Entity (1)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (1)
1376
return new
DbExceptExpression
(resultType, left, right);
26 references to DbExceptExpression
System.Data.Entity (26)
System\Data\Common\CommandTrees\BasicExpressionVisitor.cs (2)
443
/// Visitor pattern method for <see cref="
DbExceptExpression
"/>.
447
public override void Visit(
DbExceptExpression
expression)
System\Data\Common\CommandTrees\DbExpressionVisitor.cs (1)
97
public abstract void Visit(
DbExceptExpression
expression);
System\Data\Common\CommandTrees\DbExpressionVisitor_TResultType.cs (1)
110
public abstract TResultType Visit(
DbExceptExpression
expression);
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
665
public override DbExpression Visit(
DbExceptExpression
expression)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (2)
1366
/// Creates a new <see cref="
DbExceptExpression
"/> that computes the subtraction of the right set argument from the left set argument.
1373
public static
DbExceptExpression
Except(this DbExpression left, DbExpression right)
System\Data\Common\CommandTrees\ExpressionBuilder\Internal\ArgumentValidation.cs (1)
1340
RequireComparableCollectionArguments<
DbExceptExpression
>(left, right);
System\Data\Common\CommandTrees\Internal\ExpressionDumper.cs (1)
612
public override void Visit(
DbExceptExpression
e)
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (1)
440
public override void Visit(
DbExceptExpression
e)
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (1)
671
public override TreeNode Visit(
DbExceptExpression
e)
System\Data\Mapping\Update\Internal\UpdateExpressionVisitor.cs (1)
117
public override TReturn Visit(
DbExceptExpression
expression)
System\Data\Mapping\ViewValidator.cs (1)
465
public override DbExpressionEntitySetInfo Visit(
DbExceptExpression
expression)
System\Data\Objects\ELinq\ExpressionConverter.cs (2)
452
private
DbExceptExpression
Except(DbExpression left, DbExpression right)
454
DbExceptExpression
retExpr = left.Except(right);
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
1656
public override Node Visit(
DbExceptExpression
e)
System\Data\SqlClient\SqlGen\Sql8ConformanceChecker.cs (2)
21
/// <item><see cref="
DbExceptExpression
"/></item>
344
public override bool Visit(
DbExceptExpression
expression)
System\Data\SqlClient\SqlGen\Sql8ExpressionRewriter.cs (6)
29
/// <item><see cref="
DbExceptExpression
"/></item>
73
public override DbExpression Visit(
DbExceptExpression
e)
158
/// This method is invoked when tranforming <see cref="DbIntersectExpression"/> and <see cref="
DbExceptExpression
"/> by doing comparison over all input columns.
171
/// This method is used for translating <see cref="DbIntersectExpression"/> and <see cref="
DbExceptExpression
"/>,
194
/// for the purpose of translating <see cref="
DbExceptExpression
"/> or <see cref="DbSkipExpression"/>.
196
/// <see cref="
DbExceptExpression
"/> or <see cref="DbIntersectExpression"/>.
System\Data\SqlClient\SqlGen\SqlGenerator.cs (2)
1216
public override ISqlFragment Visit(
DbExceptExpression
e)
2596
/// This code is shared by <see cref="Visit(
DbExceptExpression
)"/>