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