Base:
property
Value
System.Data.Common.DbParameter.Value
Implemented interface member:
property
Value
System.Data.IDataParameter.Value
6 writes to Value
System.Data.Entity (5)
System\Data\Common\Utils\CommandHelper.cs (1)
143entityParameter.Value = parameterValue;
System\Data\EntityClient\EntityParameter.cs (1)
112this.Value = value;
System\Data\EntityClient\EntityParameterCollection.cs (1)
114param.Value = value;
System\Data\Objects\Internal\ObjectQueryExecutionPlan.cs (1)
183entityCommand.Parameters[index].Value = parameter.Value ?? DBNull.Value;
System\Data\Objects\ObjectContext.cs (1)
2784entityParameter.Value = objectParameter.Value ?? DBNull.Value;
System.Data.Entity.Design (1)
System\Data\Entity\Design\SSDLGenerator\EntityStoreSchemaGeneratorDatabaseSchemaLoader.cs (1)
321parameter.Value = value;
10 references to Value
System.Data.Entity (10)
System\Data\EntityClient\DbParameterHelper.cs (1)
107size = ValueSize(Value);
System\Data\EntityClient\EntityCommand.cs (2)
831if (parameter.EdmType == null && parameter.DbType == DbType.Object && (parameter.Value == null || parameter.Value is DBNull))
System\Data\EntityClient\EntityCommandDefinition.cs (1)
509storeProviderServices.SetParameterValue(storeParameter, parameterTypeUsage, entityParameter.Value);
System\Data\EntityClient\EntityParameter.cs (2)
446this.Value != null && 447ClrProviderManifest.Instance.TryGetPrimitiveType(this.Value.GetType(), out primitiveParameterType) &&
System\Data\Objects\ObjectContext.cs (4)
2786if (DBNull.Value == entityParameter.Value || 3332if (_entityParameter.Value != DBNull.Value && _objectParameter.MappableType.IsEnum) 3334_objectParameter.Value = Enum.ToObject(_objectParameter.MappableType, _entityParameter.Value); 3338_objectParameter.Value = _entityParameter.Value;