2 instantiations of Coordinator
System.Data.Entity (2)
System\Data\Common\Internal\Materialization\CoordinatorFactory.cs (1)
287return new Coordinator<TElement>(this, parent, next);
System\Data\Common\Internal\Materialization\Shaper.cs (1)
1058RootCoordinator = new Coordinator<T>(rootCoordinatorFactory, /*parent*/ null, /*next*/ null);
10 references to Coordinator
System.Data.Entity (10)
System\Data\Common\Internal\Materialization\Shaper.cs (4)
239public IEntityWrapper HandleFullSpanCollection<T_SourceEntity, T_TargetEntity>(IEntityWrapper wrappedEntity, Coordinator<T_TargetEntity> coordinator, AssociationEndMember targetMember) 1022internal readonly Coordinator<T> RootCoordinator; 1425internal Coordinator<T> RootCoordinator 1656_current = ((Coordinator<RecordState>)currentCoordinator).Current;
System\Data\Common\Internal\Materialization\Translator.cs (3)
362result = typeof(Coordinator<RecordState>); 1865MethodInfo getElementsExpression = typeof(Coordinator<>).MakeGenericType(elementType).GetMethod("GetElements", BindingFlags.NonPublic | BindingFlags.Instance); 2026Expression result = Emit_Shaper_GetState(stateSlotNumber, typeof(Coordinator<>).MakeGenericType(elementType));
System\Data\Objects\ELinq\InitializerFacet.cs (1)
491public static EntityCollection<T> CreateEntityCollection<T>(Shaper state, IEntityWrapper wrappedOwner, Coordinator<T> coordinator, string relationshipName, string targetRoleName)
System\Data\Query\ResultAssembly\BridgeDataRecord.cs (2)
469Coordinator<RecordState> coordinator = result as Coordinator<RecordState>;