Base:
method
GetValue
System.Data.Common.DbDataRecord.GetValue(System.Int32)
Implemented interface member:
method
GetValue
System.Data.IDataRecord.GetValue(System.Int32)
21 references to GetValue
System.Data.Entity (21)
System\Data\Mapping\Update\Internal\KeyManager.cs (1)
323keyValues[i] = currentValues.GetValue(ordinal);
System\Data\Objects\EntityEntry.cs (1)
3293object existing = current.GetValue(index);
System\Data\Objects\ObjectStateEntryBaseUpdatableDataRecord.cs (19)
63return GetValue(ordinal); 76return GetValue(GetOrdinal(name)); 87return (bool)GetValue(ordinal); 97return (byte)GetValue(ordinal); 112tempBuffer = (byte[])GetValue(ordinal); 151return (char)GetValue(ordinal); 166tempBuffer = (char[])GetValue(ordinal); 228return (DateTime)GetValue(ordinal); 237return (Decimal)GetValue(ordinal); 246return (double)GetValue(ordinal); 265return (float)GetValue(ordinal); 274return (Guid)GetValue(ordinal); 283return (Int16)GetValue(ordinal); 292return (Int32)GetValue(ordinal); 301return (Int64)GetValue(ordinal); 335return (string)GetValue(ordinal); 367values[i] = GetValue(i); 378return (GetValue(ordinal) == DBNull.Value); 550return (DbDataRecord)GetValue(ordinal);