1 type derived from ObjectQuery
System.Data.Entity (1)
System\Data\Objects\ObjectQuery_TResultType.cs (1)
28public partial class ObjectQuery<T> : ObjectQuery, IEnumerable<T>, IQueryable<T>, IOrderedQueryable<T>, IListSource
34 references to ObjectQuery
System.Data.Entity (27)
System\Data\Objects\ELinq\ELinqQueryState.cs (1)
72internal ELinqQueryState(Type elementType, ObjectQuery query, Expression expression)
System\Data\Objects\ELinq\ExpressionConverter.cs (3)
43private HashSet<ObjectQuery> _inlineEntitySqlQueries; 650private DbExpression TranslateInlineQueryOfT(ObjectQuery inlineQuery) 663_inlineEntitySqlQueries = new HashSet<ObjectQuery>();
System\Data\Objects\ELinq\Funcletizer.cs (7)
488ObjectQuery inlineQuery = value as ObjectQuery; 521ObjectQuery originalQuery = value as ObjectQuery; 534ObjectQuery currentQuery = getValue() as ObjectQuery; 550private Expression InlineObjectQuery(ObjectQuery inlineQuery, Type expressionType)
System\Data\Objects\ELinq\ObjectQueryProvider.cs (5)
28private readonly ObjectQuery _query; 48internal ObjectQueryProvider(ObjectQuery query) 111ObjectQuery query = CreateQuery(expression, elementType); 128ObjectQuery query = CreateQuery(expression, expression.Type); 161private ObjectQuery CreateQuery(Expression expression, Type ofType)
System\Data\Objects\ELinq\Translator.cs (2)
72ObjectQuery queryOfT = linq.Value as ObjectQuery;
System\Data\Objects\Internal\ObjectQueryExecutionPlan.cs (1)
24/// Represents the 'compiled' form of all elements (query + result assembly) required to execute a specific <see cref="ObjectQuery"/>
System\Data\Objects\Internal\ObjectQueryState.cs (7)
99/// <see cref="ObjectQuery"/>. 103protected ObjectQueryState(Type elementType, ObjectQuery query) 176/// <see cref="ObjectQuery.MergeOption"/> sets this property on its underlying query state instance. 263/// to <see cref="ObjectQuery.GetResultType"/> cannot be satisfied using cached type metadata or a currently cached execution plan. 310/// <returns>A new <see cref="ObjectQuery&lt;TResultType&gt;"/> - typed as <see cref="ObjectQuery"/></returns> 312internal ObjectQuery CreateQuery() 318return (ObjectQuery)createMethod.Invoke(null, new object[] { this } );
System\Data\Objects\ObjectQuery_EntitySqlExtensions.cs (1)
49private static bool IsLinqQuery(ObjectQuery query)
System.Data.Services (6)
System\Data\Services\Providers\ObjectContextServiceProvider.cs (6)
263bool useBasicExpandProvider = !(typeof(ObjectQuery).IsAssignableFrom(source.GetType())); 384ObjectQuery objectQuery = query as ObjectQuery; 911ObjectQuery result = this.InternalGetResourceContainerInstance(resourceContainer); 2346private ObjectQuery InternalGetResourceContainerInstance(ResourceSet container) 2368return (ObjectQuery)container.ReadFromContextDelegate(this.ObjectContext);
System.Web.Entity (1)
System\Data\WebControls\EntityDataSourceView.cs (1)
278if (queryReturned as ObjectQuery == null)