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