1 write to RecordStateFactory
System.Data.Entity (1)
System\Data\Common\Internal\Materialization\RecordState.cs (1)
60
this.
RecordStateFactory
= recordStateFactory;
13 references to RecordStateFactory
System.Data.Entity (13)
System\Data\Common\Internal\Materialization\RecordState.cs (13)
62
this.CurrentColumnValues = new object[
RecordStateFactory
.ColumnCount];
63
this.PendingColumnValues = new object[
RecordStateFactory
.ColumnCount];
91
if (
RecordStateFactory
.HasNestedColumns)
95
if (
RecordStateFactory
.IsColumnNested[ordinal])
112
get { return
RecordStateFactory
.ColumnCount; }
126
result =
RecordStateFactory
.DataRecordInfo;
203
if (ordinal < 0 || ordinal >=
RecordStateFactory
.ColumnCount)
207
return
RecordStateFactory
.ColumnNames[ordinal];
215
return
RecordStateFactory
.FieldNameLookup.GetOrdinal(name);
223
return
RecordStateFactory
.TypeUsages[ordinal];
232
return
RecordStateFactory
.IsColumnNested[ordinal];
257
RecordStateFactory
.GatherData(shaper);
278
_pendingEntityRecordInfo = new EntityRecordInfo(this.
RecordStateFactory
.DataRecordInfo, entityKey, entitySet);