Base:
method
GetValue
System.Data.Common.DbDataRecord.GetValue(System.Int32)
Implemented interface member:
method
GetValue
System.Data.IDataRecord.GetValue(System.Int32)
19 references to GetValue
System.Data.Entity (19)
System\Data\Objects\ObjectStateEntryDbDataRecord.cs (19)
75return GetValue(ordinal); 82return GetValue(GetOrdinal(name)); 87return (bool)GetValue(ordinal); 91return (byte)GetValue(ordinal); 96tempBuffer = (byte[])GetValue(ordinal); 129return (char)GetValue(ordinal); 134tempBuffer = (char[])GetValue(ordinal); 176return (DateTime)GetValue(ordinal); 180return (Decimal)GetValue(ordinal); 184return (Double)GetValue(ordinal); 192return (float)GetValue(ordinal); 196return (Guid)GetValue(ordinal); 200return (Int16)GetValue(ordinal); 204return (Int32)GetValue(ordinal); 208return (Int64)GetValue(ordinal); 225return (string)GetValue(ordinal); 247values[i] = GetValue(i); 253return (GetValue(ordinal) == DBNull.Value); 270return (DbDataRecord)GetValue(ordinal);