1 instantiation of DbCastExpression
System.Data.Entity (1)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (1)
998return new DbCastExpression(toType, argument);
30 references to DbCastExpression
System.Data.Entity (30)
System\Data\Common\CommandTrees\BasicExpressionVisitor.cs (2)
473/// Visitor pattern method for <see cref="DbCastExpression"/>. 477public override void Visit(DbCastExpression expression)
System\Data\Common\CommandTrees\DbExpressionVisitor.cs (1)
55public abstract void Visit(DbCastExpression expression);
System\Data\Common\CommandTrees\DbExpressionVisitor_TResultType.cs (1)
61public abstract TResultType Visit(DbCastExpression expression);
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
693public override DbExpression Visit(DbCastExpression expression)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (2)
988/// Creates a new <see cref="DbCastExpression"/> that applies a cast operation to a polymorphic argument. 995public static DbCastExpression CastTo(this DbExpression argument, TypeUsage toType)
System\Data\Common\CommandTrees\Internal\ExpressionDumper.cs (1)
631public override void Visit(DbCastExpression e)
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (1)
450public override void Visit(DbCastExpression e)
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (1)
705public override TreeNode Visit(DbCastExpression e)
System\Data\Common\CommandTrees\Internal\ViewSimplifier.cs (2)
830var castExpression = (DbCastExpression)expression;
System\Data\Mapping\Update\Internal\Propagator.Evaluator.cs (1)
495public override PropagatorResult Visit(DbCastExpression node)
System\Data\Mapping\Update\Internal\UpdateExpressionVisitor.cs (1)
82public override TReturn Visit(DbCastExpression expression)
System\Data\Mapping\ViewValidator.cs (1)
480public override DbExpressionEntitySetInfo Visit(DbCastExpression expression)
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
1689public override Node Visit(DbCastExpression e)
System\Data\SqlClient\SqlGen\Sql8ConformanceChecker.cs (1)
264public override bool Visit(DbCastExpression expression)
System\Data\SqlClient\SqlGen\SqlGenerator.cs (13)
699public override ISqlFragment Visit(DbCastExpression e) 2076var first = (DbCastExpression)x; 2077var second = (DbCastExpression)y; 2108return GetHashCode(((DbCastExpression)obj).Argument); 4239/// either potentially capped with a <see cref="DbCastExpression"/> 4270/// potentially capped with a <see cref="DbCastExpression"/>. 4284/// referencing the given inputVarRefName potentially capped with a <see cref="DbCastExpression"/>. 4308/// potentially capped with a <see cref="DbCastExpression"/>. 4326/// either potentially capped with a <see cref="DbCastExpression"/>. 4343DbCastExpression castExpression = (DbCastExpression)expression;