1 type derived from ObjectQuery
System.Data.Entity (1)
System\Data\Objects\ObjectQuery_TResultType.cs (1)
28
public 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)
72
internal ELinqQueryState(Type elementType,
ObjectQuery
query, Expression expression)
System\Data\Objects\ELinq\ExpressionConverter.cs (3)
43
private HashSet<
ObjectQuery
> _inlineEntitySqlQueries;
650
private DbExpression TranslateInlineQueryOfT(
ObjectQuery
inlineQuery)
663
_inlineEntitySqlQueries = new HashSet<
ObjectQuery
>();
System\Data\Objects\ELinq\Funcletizer.cs (7)
488
ObjectQuery
inlineQuery = value as
ObjectQuery
;
521
ObjectQuery
originalQuery = value as
ObjectQuery
;
534
ObjectQuery
currentQuery = getValue() as
ObjectQuery
;
550
private Expression InlineObjectQuery(
ObjectQuery
inlineQuery, Type expressionType)
System\Data\Objects\ELinq\ObjectQueryProvider.cs (5)
28
private readonly
ObjectQuery
_query;
48
internal ObjectQueryProvider(
ObjectQuery
query)
111
ObjectQuery
query = CreateQuery(expression, elementType);
128
ObjectQuery
query = CreateQuery(expression, expression.Type);
161
private
ObjectQuery
CreateQuery(Expression expression, Type ofType)
System\Data\Objects\ELinq\Translator.cs (2)
72
ObjectQuery
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
"/>.
103
protected 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<TResultType>"/> - typed as <see cref="
ObjectQuery
"/></returns>
312
internal
ObjectQuery
CreateQuery()
318
return (
ObjectQuery
)createMethod.Invoke(null, new object[] { this } );
System\Data\Objects\ObjectQuery_EntitySqlExtensions.cs (1)
49
private static bool IsLinqQuery(
ObjectQuery
query)
System.Data.Services (6)
System\Data\Services\Providers\ObjectContextServiceProvider.cs (6)
263
bool useBasicExpandProvider = !(typeof(
ObjectQuery
).IsAssignableFrom(source.GetType()));
384
ObjectQuery
objectQuery = query as
ObjectQuery
;
911
ObjectQuery
result = this.InternalGetResourceContainerInstance(resourceContainer);
2346
private
ObjectQuery
InternalGetResourceContainerInstance(ResourceSet container)
2368
return (
ObjectQuery
)container.ReadFromContextDelegate(this.ObjectContext);
System.Web.Entity (1)
System\Data\WebControls\EntityDataSourceView.cs (1)
278
if (queryReturned as
ObjectQuery
== null)