20 references to Value
System.Data.Entity (20)
System\Data\Query\InternalTrees\Dump.cs (2)
219
if (null == op.
Value
) {
226
WriteString(String.Format(CultureInfo.InvariantCulture,"{0}",op.
Value
));
System\Data\Query\InternalTrees\NodeInfo.cs (1)
1161
if(TypeHelpers.IsIntegerConstant(constOp.Type, constOp.
Value
, 1))
System\Data\Query\InternalTrees\OpCopier.cs (2)
295
ConstantBaseOp newOp = m_destCmd.CreateConstantOp(op.Type, op.
Value
);
329
InternalConstantOp newOp = m_destCmd.CreateInternalConstantOp(op.Type, op.
Value
);
System\Data\Query\InternalTrees\ScalarOps.cs (5)
71
((otherConstant.
Value
== null && this.
Value
== null) || otherConstant.
Value
.Equals(this.
Value
));
261
internal new bool Value { get { return (bool)base.
Value
; } }
System\Data\Query\PlanCompiler\CTreeGenerator.cs (1)
677
return DbExpressionBuilder.Constant(op.Type, op.
Value
);
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (5)
1876
PlanCompiler.Assert(op.
Value
!= null, "Value must not be null");
1885
object constValue = op.
Value
.GetType().IsEnum ?
1886
Convert.ChangeType(op.
Value
, op.
Value
.GetType().GetEnumUnderlyingType(), CultureInfo.InvariantCulture) :
1887
op.
Value
;
System\Data\Query\PlanCompiler\TransformationRules.cs (4)
1135
string str = (string)strOp.
Value
;
1136
string pattern = (string)patternOp.
Value
;
1138
bool? match = MatchesPattern((string)strOp.
Value
, (string)patternOp.
Value
);