1 instantiation of Shaper
System.Data.Entity (1)
System\Data\Common\Internal\Materialization\ShaperFactory.cs (1)
70
return new
Shaper
<T>(reader, context, workspace, mergeOption, _stateCount, _rootCoordinatorFactory, _checkPermissions, readerOwned);
26 references to Shaper
System.Data.Entity (26)
System\Data\Common\Internal\Materialization\CoordinatorFactory.cs (1)
293
internal RecordState GetDefaultRecordState(
Shaper
<RecordState> shaper)
System\Data\Common\Internal\Materialization\Shaper.cs (5)
1136
RowNestedResultEnumerator rowEnumerator = new
Shaper
<T>.RowNestedResultEnumerator(this);
1251
private readonly
Shaper
<T> _shaper;
1253
internal SimpleEnumerator(
Shaper
<T> shaper)
1321
private readonly
Shaper
<T> _shaper;
1324
internal RowNestedResultEnumerator(
Shaper
<T> shaper)
System\Data\Common\Internal\Materialization\ShaperFactory.cs (1)
67
internal
Shaper
<T> Create(DbDataReader reader, ObjectContext context, MetadataWorkspace workspace, MergeOption mergeOption, bool readerOwned)
System\Data\Objects\Internal\ObjectQueryExecutionPlan.cs (1)
192
Shaper
<TResultType> shaper = shaperFactory.Create(storeReader, context, context.MetadataWorkspace, this.MergeOption, true);
System\Data\Objects\ObjectContext.cs (2)
2717
Shaper
<TElement> shaper = shaperFactory.Create(storeReader, this, this.MetadataWorkspace, mergeOption, shaperOwnsReader);
3190
Shaper
<TElement> shaper = shaperFactory.Create(reader, this, this.MetadataWorkspace, mergeOption, readerOwned);
System\Data\Objects\ObjectResult_TResultType.cs (5)
34
private
Shaper
<T> _shaper;
43
internal ObjectResult(
Shaper
<T> shaper, EntitySet singleEntitySet, TypeUsage resultItemType)
48
internal ObjectResult(
Shaper
<T> shaper, EntitySet singleEntitySet, TypeUsage resultItemType, bool readerOwned)
53
internal ObjectResult(
Shaper
<T> shaper, EntitySet singleEntitySet, TypeUsage resultItemType, bool readerOwned, NextResultGenerator nextResultGenerator, Action<object, EventArgs> onReaderDispose)
80
Shaper
<T> shaper = _shaper;
System\Data\Query\ResultAssembly\BridgeDataReader.cs (9)
33
private
Shaper
<RecordState> Shaper;
39
private IEnumerator<KeyValuePair<
Shaper
<RecordState>, CoordinatorFactory<RecordState>>> NextResultShaperInfoEnumerator;
78
internal BridgeDataReader(
Shaper
<RecordState> shaper, CoordinatorFactory<RecordState> coordinatorFactory, int depth, IEnumerator<KeyValuePair<
Shaper
<RecordState>, CoordinatorFactory<RecordState>>> nextResultShaperInfos)
88
private void SetShaper(
Shaper
<RecordState> shaper, CoordinatorFactory<RecordState> coordinatorFactory, int depth)
135
private static KeyValuePair<
Shaper
<RecordState>, CoordinatorFactory<RecordState>> CreateShaperInfo(DbDataReader storeDataReader, ColumnMap columnMap, MetadataWorkspace workspace)
145
Shaper
<RecordState> recordShaper = shaperFactory.Create(storeDataReader, null, workspace, System.Data.Objects.MergeOption.NoTracking, true);
147
return new KeyValuePair<
Shaper
<RecordState>, CoordinatorFactory<RecordState>>(recordShaper, recordShaper.RootCoordinator.TypedCoordinatorFactory);
150
private static IEnumerable<KeyValuePair<
Shaper
<RecordState>, CoordinatorFactory<RecordState>>> GetNextResultShaperInfo(DbDataReader storeDataReader, MetadataWorkspace workspace, IEnumerable<ColumnMap> nextResultColumnMaps)
System\Data\Query\ResultAssembly\BridgeDataRecord.cs (2)
39
private readonly
Shaper
<RecordState> Shaper;
90
internal BridgeDataRecord(
Shaper
<RecordState> shaper, int depth)