Implemented interface member:
method
GetValue
System.Data.IDataRecord.GetValue(System.Int32)
7 overrides of GetValue
System.Data (4)
fx\src\data\System\Data\DataTableReader.cs (1)
560
override public object
GetValue
(int ordinal) {
fx\src\data\System\Data\Odbc\OdbcDataReader.cs (1)
492
override public object
GetValue
(int i) {
fx\src\data\System\Data\OleDb\OleDbDataReader.cs (1)
1031
override public object
GetValue
(int ordinal) {
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (1)
2516
override public object
GetValue
(int i) {
System.Data.Entity (2)
System\Data\EntityClient\EntityDataReader.cs (1)
438
public override object
GetValue
(int ordinal)
System\Data\Query\ResultAssembly\BridgeDataReader.cs (1)
623
override public Object
GetValue
(int ordinal) {
System.Data.Linq (1)
SqlClient\Reader\ObjectReaderCompiler.cs (1)
2952
public override object
GetValue
(int i) { return reader.GetValue(i); }
13 references to GetValue
System.Data (6)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (3)
1969
o = reader.
GetValue
(i);
2003
ts = (TimeSpan)reader.
GetValue
(i);
2015
dto = (DateTimeOffset)reader.
GetValue
(i);
fx\src\data\System\Data\Common\DbDataReader.cs (2)
153
return
GetValue
(ordinal);
195
return (T)
GetValue
(ordinal);
fx\src\data\System\Data\SqlClient\SqlBulkCopy.cs (1)
866
object columnValue = _DbDataReaderRowSource.
GetValue
(sourceOrdinal);
System.Data.Entity (5)
System\Data\Common\Internal\Materialization\Shaper.cs (1)
845
return reader.
GetValue
(ordinal);
System\Data\EntityClient\EntityCommand.cs (1)
499
object result = reader.Read() ? reader.
GetValue
(0) : null;
System\Data\EntityClient\EntityDataReader.cs (1)
440
return this._storeDataReader.
GetValue
(ordinal);
System\Data\Mapping\Update\Internal\DynamicUpdateCommand.cs (1)
136
value = reader.
GetValue
(ordinal);
System\Data\Mapping\Update\Internal\FunctionUpdateCommand.cs (1)
264
value = reader.
GetValue
(columnOrdinal);
System.Data.Linq (1)
SqlClient\Reader\ObjectReaderCompiler.cs (1)
2952
public override object GetValue(int i) { return reader.
GetValue
(i); }
System.Workflow.Runtime (1)
Hosting\SqlWorkflowPersistenceService.cs (1)
611
result = (byte[])dr.
GetValue
(0);