7 overrides of Visit
System.Data.Entity (7)
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
762
public override DbExpression
Visit
(DbRefExpression expression)
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (1)
791
public override TreeNode
Visit
(DbRefExpression e)
System\Data\Mapping\Update\Internal\UpdateExpressionVisitor.cs (1)
239
public override TReturn
Visit
(DbRefExpression expression)
System\Data\Mapping\ViewValidator.cs (1)
394
public override DbExpressionEntitySetInfo
Visit
(DbRefExpression expression)
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
2102
public override Node
Visit
(DbRefExpression e)
System\Data\SqlClient\SqlGen\Sql8ConformanceChecker.cs (1)
605
public override bool
Visit
(DbRefExpression expression)
System\Data\SqlClient\SqlGen\SqlGenerator.cs (1)
2427
public override ISqlFragment
Visit
(DbRefExpression e)
1 reference to Visit
System.Data.Entity (1)
System\Data\Common\CommandTrees\ValueExpressions.cs (1)
722
public override TResultType Accept<TResultType>(DbExpressionVisitor<TResultType> visitor) { if (visitor != null) { return visitor.
Visit
(this); } else { throw EntityUtil.ArgumentNull("visitor"); } }