1 type derived from ELinqQueryState
System.Data.Entity (1)
System\Data\Objects\ELinq\CompiledELinqQueryState.cs (1)
27
internal sealed class CompiledELinqQueryState :
ELinqQueryState
5 instantiations of ELinqQueryState
System.Data.Entity (5)
System\Data\Objects\ELinq\ELinqQueryState.cs (1)
246
ObjectQueryState retState = new
ELinqQueryState
(this.ElementType, this.ObjectContext, includeCall);
System\Data\Objects\ELinq\ObjectQueryProvider.cs (4)
144
queryState = new
ELinqQueryState
(typeof(S), _context, expression);
148
queryState = new
ELinqQueryState
(typeof(S), _query, expression);
166
queryState = new
ELinqQueryState
(ofType, _context, expression);
170
queryState = 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)
51
return (query.QueryState is
ELinqQueryState
);