1 type derived from ELinqQueryState
System.Data.Entity (1)
System\Data\Objects\ELinq\CompiledELinqQueryState.cs (1)
27internal sealed class CompiledELinqQueryState : ELinqQueryState
5 instantiations of ELinqQueryState
System.Data.Entity (5)
System\Data\Objects\ELinq\ELinqQueryState.cs (1)
246ObjectQueryState retState = new ELinqQueryState(this.ElementType, this.ObjectContext, includeCall);
System\Data\Objects\ELinq\ObjectQueryProvider.cs (4)
144queryState = new ELinqQueryState(typeof(S), _context, expression); 148queryState = new ELinqQueryState(typeof(S), _query, expression); 166queryState = new ELinqQueryState(ofType, _context, expression); 170queryState = new ELinqQueryState(ofType, _query, expression);
4 references to ELinqQueryState
System.Data.Entity (4)
System\Data\Objects\ELinq\CompiledELinqQueryState.cs (1)
183/// <returns>The query result type from this compiled query's cache entry, if possible; otherwise defers to <see cref="ELinqQueryState.GetResultType"/></returns>
System\Data\Objects\ELinq\ELinqQueryState.cs (2)
44/// Constructs a new <see cref="ELinqQueryState"/> instance based on the specified Linq Expression 66/// Constructs a new <see cref="ELinqQueryState"/> instance based on the specified Linq Expression,
System\Data\Objects\ObjectQuery_EntitySqlExtensions.cs (1)
51return (query.QueryState is ELinqQueryState);