10 implementations of GetName
System.Data (4)
fx\src\data\Microsoft\SqlServer\Server\SqlDataRecord.cs (1)
45
public virtual String
GetName
( int ordinal ) {
fx\src\data\System\Data\Common\DbDataReader.cs (1)
85
abstract public string
GetName
(int ordinal);
fx\src\data\System\Data\Common\dbdatarecord.cs (1)
71
public abstract string
GetName
(int i);
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (1)
1308
override public string
GetName
(int i) {
System.Data.Entity (6)
System\Data\Common\DataRecord.cs (1)
364
public override string
GetName
(int ordinal)
System\Data\EntityClient\EntityDataReader.cs (1)
365
public override string
GetName
(int ordinal)
System\Data\Objects\ObjectStateEntryBaseUpdatableDataRecord.cs (1)
308
override public string
GetName
(int ordinal)
System\Data\Objects\ObjectStateEntryDbDataRecord.cs (1)
210
override public string
GetName
(int ordinal)
System\Data\Query\ResultAssembly\BridgeDataReader.cs (1)
520
override public string
GetName
(int ordinal) {
System\Data\Query\ResultAssembly\BridgeDataRecord.cs (1)
367
override public string
GetName
(int ordinal) {
8 references to GetName
System.Data (4)
fx\src\data\System\Data\Common\dbenumerator.cs (2)
88
fieldnames[i] = _reader.
GetName
(i);
96
s.name = _reader.
GetName
(i);
fx\src\data\System\Data\Common\FieldNameLookup.cs (1)
60
fieldNames[i] = reader.
GetName
(i);
fx\src\data\System\Data\ProviderBase\DataReaderContainer.cs (1)
49
string fieldName = _dataReader.
GetName
(ordinal);
System.Data.Entity (4)
System\Data\Common\FieldNameLookup.cs (1)
52
fieldNames[i] = reader.
GetName
(i);
System\Data\Mapping\Update\Internal\ExtractorMetadata.cs (3)
150
identifier = m_translator.KeyManager.GetKeyIdentifierForMember(key, record.
GetName
(ordinal), useCurrentValues);
164
Debug.Assert(record.
GetName
(ordinal) == memberInformation.Member.Name, "expect record to present properties in metadata order");
167
throw EntityUtil.Update(Strings.Update_NullValue(record.
GetName
(ordinal)), null, stateEntry);