7 references to Predicate
System.Data.Entity (7)
System\Data\Common\CommandTrees\BasicCommandTreeVisitor.cs (1)
89
this.VisitExpression(deleteTree.
Predicate
);
System\Data\Common\CommandTrees\DbDeleteCommandTree.cs (2)
78
if (this.
Predicate
!= null)
80
dumper.Dump(this.
Predicate
, "Predicate");
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (3)
43
Debug.Assert(tree != null && tree.
Predicate
!= null, "Invalid DbDeleteCommandTree");
56
if (tree.
Predicate
!= null)
58
predicateNode = _visitor.VisitExpression("Predicate", tree.
Predicate
);
System\Data\SqlClient\SqlGen\DmlSqlGenerator.cs (1)
102
tree.
Predicate
.Accept(translator);