1 instantiation of DbCastExpression
System.Data.Entity (1)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (1)
998
return 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
"/>.
477
public override void Visit(
DbCastExpression
expression)
System\Data\Common\CommandTrees\DbExpressionVisitor.cs (1)
55
public abstract void Visit(
DbCastExpression
expression);
System\Data\Common\CommandTrees\DbExpressionVisitor_TResultType.cs (1)
61
public abstract TResultType Visit(
DbCastExpression
expression);
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
693
public 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.
995
public static
DbCastExpression
CastTo(this DbExpression argument, TypeUsage toType)
System\Data\Common\CommandTrees\Internal\ExpressionDumper.cs (1)
631
public override void Visit(
DbCastExpression
e)
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (1)
450
public override void Visit(
DbCastExpression
e)
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (1)
705
public override TreeNode Visit(
DbCastExpression
e)
System\Data\Common\CommandTrees\Internal\ViewSimplifier.cs (2)
830
var
castExpression = (
DbCastExpression
)expression;
System\Data\Mapping\Update\Internal\Propagator.Evaluator.cs (1)
495
public override PropagatorResult Visit(
DbCastExpression
node)
System\Data\Mapping\Update\Internal\UpdateExpressionVisitor.cs (1)
82
public override TReturn Visit(
DbCastExpression
expression)
System\Data\Mapping\ViewValidator.cs (1)
480
public override DbExpressionEntitySetInfo Visit(
DbCastExpression
expression)
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
1689
public override Node Visit(
DbCastExpression
e)
System\Data\SqlClient\SqlGen\Sql8ConformanceChecker.cs (1)
264
public override bool Visit(
DbCastExpression
expression)
System\Data\SqlClient\SqlGen\SqlGenerator.cs (13)
699
public override ISqlFragment Visit(
DbCastExpression
e)
2076
var
first = (
DbCastExpression
)x;
2077
var
second = (
DbCastExpression
)y;
2108
return 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
"/>.
4343
DbCastExpression
castExpression = (
DbCastExpression
)expression;