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\Query\ResultAssembly\BridgeDataReader.cs (1)
624return DataRecord.GetValue(ordinal);
System\Data\Query\ResultAssembly\BridgeDataRecord.cs (18)
393return GetValue(ordinal); 404return GetValue(GetOrdinal(name)); 494values[i] = GetValue(i); 509return (bool)GetValue(ordinal); 518return (byte)GetValue(ordinal); 527return (char)GetValue(ordinal); 536return (DateTime)GetValue(ordinal); 545return (Decimal)GetValue(ordinal); 554return (double)GetValue(ordinal); 563return (float)GetValue(ordinal); 572return (Guid)GetValue(ordinal); 581return (Int16)GetValue(ordinal); 590return (Int32)GetValue(ordinal); 599return (Int64)GetValue(ordinal); 608return (String)GetValue(ordinal); 622object columnValue = GetValue(ordinal); 700return (DbDataReader)GetValue(ordinal); 709return (DbDataRecord)GetValue(ordinal);