ObjectQuery<T> Class

 

ObjectQuery implements strongly-typed queries at the object-layer. Queries are specified using Entity-SQL strings and may be created by calling the Entity-SQL-based query builder methods declared by ObjectQuery.

Namespace:   System.Data.Entity.Core.Objects
Assembly:  EntityFramework (in EntityFramework.dll)


[SuppressMessageAttribute("Microsoft.Naming", "CA1710:IdentifiersShouldHaveCorrectSuffix")]
public class ObjectQuery<T> : ObjectQuery, IOrderedQueryable<T>, 
	IQueryable<T>, IOrderedQueryable, IQueryable, IEnumerable<T>, 
	IEnumerable, IDbAsyncEnumerable<T>, IDbAsyncEnumerable

Type Parameters

T

The result type of this ObjectQuery

NameDescription
System_CAPS_pubmethodObjectQuery<T>(String, ObjectContext)

Creates a new ObjectQuery<T> instance using the specified Entity SQL command as the initial query.

System_CAPS_pubmethodObjectQuery<T>(String, ObjectContext, MergeOption)

Creates a new ObjectQuery<T> instance using the specified Entity SQL command as the initial query and the specified merge option.

NameDescription
System_CAPS_pubpropertyCommandText

Returns the command text for the query.(Inherited from ObjectQuery.)

System_CAPS_pubpropertyContext

Gets the object context associated with this object query.(Inherited from ObjectQuery.)

System_CAPS_pubpropertyEnablePlanCaching

Gets or sets a value that indicates whether the query plan should be cached.(Inherited from ObjectQuery.)

System_CAPS_pubpropertyMergeOption

Gets or sets how objects returned from a query are added to the object context.(Inherited from ObjectQuery.)

System_CAPS_pubpropertyName

Gets or sets the name of this object query.

System_CAPS_pubpropertyParameters

Gets the parameter collection for this object query.(Inherited from ObjectQuery.)

System_CAPS_pubpropertyStreaming

Whether the query is streaming or buffering(Inherited from ObjectQuery.)

NameDescription
System_CAPS_pubmethodDistinct()

Limits the query to unique results.

System_CAPS_pubmethodEquals(Object)

(Inherited from Object.)

System_CAPS_pubmethodExcept(ObjectQuery<T>)

This query-builder method creates a new query whose results are all of the results of this query, except those that are also part of the other query specified.

System_CAPS_pubmethodExecute(MergeOption)

Executes the object query with the specified merge option.

System_CAPS_pubmethodExecuteAsync(MergeOption)

Asynchronously executes the object query with the specified merge option.

System_CAPS_pubmethodExecuteAsync(MergeOption, CancellationToken)

Asynchronously executes the object query with the specified merge option.

System_CAPS_protmethodFinalize()

(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()

(Inherited from Object.)

System_CAPS_pubmethodGetResultType()

Returns information about the result type of the query.(Inherited from ObjectQuery.)

System_CAPS_pubmethodGetType()

(Inherited from Object.)

System_CAPS_pubmethodGroupBy(String, String, ObjectParameter[])

Groups the query results by the specified criteria.

System_CAPS_pubmethodInclude(String)

Specifies the related objects to include in the query results.

System_CAPS_pubmethodIntersect(ObjectQuery<T>)

This query-builder method creates a new query whose results are those that are both in this query and the other query specified.

System_CAPS_protmethodMemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethodOfType<TResultType>()

Limits the query to only results of a specific type.

System_CAPS_pubmethodOrderBy(String, ObjectParameter[])

Orders the query results by the specified criteria.

System_CAPS_pubmethodSelect(String, ObjectParameter[])

Limits the query results to only the properties that are defined in the specified projection.

System_CAPS_pubmethodSelectValue<TResultType>(String, ObjectParameter[])

Limits the query results to only the property specified in the projection.

System_CAPS_pubmethodSkip(String, String, ObjectParameter[])

Orders the query results by the specified criteria and skips a specified number of results.

System_CAPS_pubmethodTop(String, ObjectParameter[])

Limits the query results to a specified number of items.

System_CAPS_pubmethodToString()

(Inherited from Object.)

System_CAPS_pubmethodToTraceString()

Returns the commands to execute against the data source.(Inherited from ObjectQuery.)

System_CAPS_pubmethodUnion(ObjectQuery<T>)

This query-builder method creates a new query whose results are all of the results of this query, plus all of the results of the other query, without duplicates (i.e., results are unique).

System_CAPS_pubmethodUnionAll(ObjectQuery<T>)

This query-builder method creates a new query whose results are all of the results of this query, plus all of the results of the other query, including any duplicates (i.e., results are not necessarily unique).

System_CAPS_pubmethodWhere(String, ObjectParameter[])

Limits the query to results that match specified filtering criteria.

NameDescription
System_CAPS_pubinterfaceSystem_CAPS_privmethodIEnumerable<T>.GetEnumerator()

Returns an IEnumerator<T> which when enumerated will execute the given SQL query against the database.

System_CAPS_pubinterfaceSystem_CAPS_privmethodIEnumerable.GetEnumerator()

Returns an enumerator that iterates through a collection.(Inherited from ObjectQuery.)

System_CAPS_pubinterfaceSystem_CAPS_privmethodIListSource.GetList()

Returns the collection as an IList used for data binding.(Inherited from ObjectQuery.)

System_CAPS_pubinterfaceSystem_CAPS_privmethodIDbAsyncEnumerable.GetAsyncEnumerator()

Returns an IDbAsyncEnumerator which when enumerated will execute the given SQL query against the database.(Inherited from ObjectQuery.)

System_CAPS_pubinterfaceSystem_CAPS_privmethodIDbAsyncEnumerable<T>.GetAsyncEnumerator()

Returns an IDbAsyncEnumerator<T> which when enumerated will execute the given SQL query against the database.

NameDescription
System_CAPS_pubmethodAllAsync<T>(Expression<Func<T, Boolean>>)

Overloaded. Asynchronously determines whether all the elements of a sequence satisfy a condition.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAllAsync<T>(Expression<Func<T, Boolean>>, CancellationToken)

Overloaded. Asynchronously determines whether all the elements of a sequence satisfy a condition.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAnyAsync<T>()

Overloaded. Asynchronously determines whether a sequence contains any elements.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAnyAsync<T>(CancellationToken)

Overloaded. Asynchronously determines whether a sequence contains any elements.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAnyAsync<T>(Expression<Func<T, Boolean>>)

Overloaded. Asynchronously determines whether any element of a sequence satisfies a condition.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAnyAsync<T>(Expression<Func<T, Boolean>>, CancellationToken)

Overloaded. Asynchronously determines whether any element of a sequence satisfies a condition.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAsNoTracking()

Overloaded. Returns a new query where the entities returned will not be cached in the DbContext or ObjectContext. This method works by calling the AsNoTracking method of the underlying query object. If the underlying query object does not have an AsNoTracking method, then calling this method will have no affect.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAsNoTracking<T>()

Overloaded. Returns a new query where the entities returned will not be cached in the DbContext or ObjectContext. This method works by calling the AsNoTracking method of the underlying query object. If the underlying query object does not have an AsNoTracking method, then calling this method will have no affect.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAsStreaming()

Obsolete.Overloaded. Returns a new query that will stream the results instead of buffering. This method works by calling the AsStreaming method of the underlying query object. If the underlying query object does not have an AsStreaming method, then calling this method will have no affect.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAsStreaming<T>()

Obsolete.Overloaded. Returns a new query that will stream the results instead of buffering. This method works by calling the AsStreaming method of the underlying query object. If the underlying query object does not have an AsStreaming method, then calling this method will have no affect.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Decimal>>)

Overloaded. Asynchronously computes the average of a sequence of Decimal values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Decimal>>, CancellationToken)

Overloaded. Asynchronously computes the average of a sequence of Decimal values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Double>>)

Overloaded. Asynchronously computes the average of a sequence of Double values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Double>>, CancellationToken)

Overloaded. Asynchronously computes the average of a sequence of Double values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Int32>>)

Overloaded. Asynchronously computes the average of a sequence of Int32 values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Int32>>, CancellationToken)

Overloaded. Asynchronously computes the average of a sequence of Int32 values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Int64>>)

Overloaded. Asynchronously computes the average of a sequence of Int64 values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Int64>>, CancellationToken)

Overloaded. Asynchronously computes the average of a sequence of Int64 values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Nullable<Decimal>>>)

Overloaded. Asynchronously computes the average of a sequence of nullable Decimal values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Nullable<Decimal>>>, CancellationToken)

Overloaded. Asynchronously computes the average of a sequence of nullable Decimal values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Nullable<Double>>>)

Overloaded. Asynchronously computes the average of a sequence of nullable Double values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Nullable<Double>>>, CancellationToken)

Overloaded. Asynchronously computes the average of a sequence of nullable Double values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Nullable<Int32>>>)

Overloaded. Asynchronously computes the average of a sequence of nullable Int32 values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Nullable<Int32>>>, CancellationToken)

Overloaded. Asynchronously computes the average of a sequence of nullable Int32 values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Nullable<Int64>>>)

Overloaded. Asynchronously computes the average of a sequence of nullable Int64 values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Nullable<Int64>>>, CancellationToken)

Overloaded. Asynchronously computes the average of a sequence of nullable Int64 values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Nullable<Single>>>)

Overloaded. Asynchronously computes the average of a sequence of nullable Single values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Nullable<Single>>>, CancellationToken)

Overloaded. Asynchronously computes the average of a sequence of nullable Single values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Single>>)

Overloaded. Asynchronously computes the average of a sequence of Single values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodAverageAsync<T>(Expression<Func<T, Single>>, CancellationToken)

Overloaded. Asynchronously computes the average of a sequence of Single values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodContainsAsync<T>(T)

Overloaded. Asynchronously determines whether a sequence contains a specified element by using the default equality comparer.(Defined by QueryableExtensions.)

System_CAPS_pubmethodContainsAsync<T>(T, CancellationToken)

Overloaded. Asynchronously determines whether a sequence contains a specified element by using the default equality comparer.(Defined by QueryableExtensions.)

System_CAPS_pubmethodCountAsync<T>()

Overloaded. Asynchronously returns the number of elements in a sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodCountAsync<T>(CancellationToken)

Overloaded. Asynchronously returns the number of elements in a sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodCountAsync<T>(Expression<Func<T, Boolean>>)

Overloaded. Asynchronously returns the number of elements in a sequence that satisfy a condition.(Defined by QueryableExtensions.)

System_CAPS_pubmethodCountAsync<T>(Expression<Func<T, Boolean>>, CancellationToken)

Overloaded. Asynchronously returns the number of elements in a sequence that satisfy a condition.(Defined by QueryableExtensions.)

System_CAPS_pubmethodFirstAsync<T>()

Overloaded. Asynchronously returns the first element of a sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodFirstAsync<T>(CancellationToken)

Overloaded. Asynchronously returns the first element of a sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodFirstAsync<T>(Expression<Func<T, Boolean>>)

Overloaded. Asynchronously returns the first element of a sequence that satisfies a specified condition.(Defined by QueryableExtensions.)

System_CAPS_pubmethodFirstAsync<T>(Expression<Func<T, Boolean>>, CancellationToken)

Overloaded. Asynchronously returns the first element of a sequence that satisfies a specified condition.(Defined by QueryableExtensions.)

System_CAPS_pubmethodFirstOrDefaultAsync<T>()

Overloaded. Asynchronously returns the first element of a sequence, or a default value if the sequence contains no elements.(Defined by QueryableExtensions.)

System_CAPS_pubmethodFirstOrDefaultAsync<T>(CancellationToken)

Overloaded. Asynchronously returns the first element of a sequence, or a default value if the sequence contains no elements.(Defined by QueryableExtensions.)

System_CAPS_pubmethodFirstOrDefaultAsync<T>(Expression<Func<T, Boolean>>)

Overloaded. Asynchronously returns the first element of a sequence that satisfies a specified condition or a default value if no such element is found.(Defined by QueryableExtensions.)

System_CAPS_pubmethodFirstOrDefaultAsync<T>(Expression<Func<T, Boolean>>, CancellationToken)

Overloaded. Asynchronously returns the first element of a sequence that satisfies a specified condition or a default value if no such element is found.(Defined by QueryableExtensions.)

System_CAPS_pubmethodForEachAsync(Action<Object>)

Overloaded. Asynchronously enumerates the query results and performs the specified action on each element.(Defined by QueryableExtensions.)

System_CAPS_pubmethodForEachAsync(Action<Object>, CancellationToken)

Overloaded. Asynchronously enumerates the query results and performs the specified action on each element.(Defined by QueryableExtensions.)

System_CAPS_pubmethodForEachAsync<T>(Action<T>)

Overloaded. Asynchronously enumerates the query results and performs the specified action on each element.(Defined by QueryableExtensions.)

System_CAPS_pubmethodForEachAsync<T>(Action<T>, CancellationToken)

Overloaded. Asynchronously enumerates the query results and performs the specified action on each element.(Defined by QueryableExtensions.)

System_CAPS_pubmethodInclude<T>(String)

Overloaded. Specifies the related objects to include in the query results.(Defined by QueryableExtensions.)

System_CAPS_pubmethodInclude<T, TProperty>(Expression<Func<T, TProperty>>)

Overloaded. Specifies the related objects to include in the query results.(Defined by QueryableExtensions.)

System_CAPS_pubmethodLoad()

Enumerates the query such that for server queries such as those of DbSet<TEntity>, ObjectSet<TEntity> , ObjectQuery<T>, and others the results of the query will be loaded into the associated DbContext , ObjectContext or other cache on the client. This is equivalent to calling ToList and then throwing away the list without the overhead of actually creating the list.(Defined by QueryableExtensions.)

System_CAPS_pubmethodLoadAsync()

Overloaded. Asynchronously enumerates the query such that for server queries such as those of DbSet<TEntity>, ObjectSet<TEntity> , ObjectQuery<T>, and others the results of the query will be loaded into the associated DbContext , ObjectContext or other cache on the client. This is equivalent to calling ToList and then throwing away the list without the overhead of actually creating the list.(Defined by QueryableExtensions.)

System_CAPS_pubmethodLoadAsync(CancellationToken)

Overloaded. Asynchronously enumerates the query such that for server queries such as those of DbSet<TEntity>, ObjectSet<TEntity> , ObjectQuery<T>, and others the results of the query will be loaded into the associated DbContext , ObjectContext or other cache on the client. This is equivalent to calling ToList and then throwing away the list without the overhead of actually creating the list.(Defined by QueryableExtensions.)

System_CAPS_pubmethodLongCountAsync<T>()

Overloaded. Asynchronously returns an Int64 that represents the total number of elements in a sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodLongCountAsync<T>(CancellationToken)

Overloaded. Asynchronously returns an Int64 that represents the total number of elements in a sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodLongCountAsync<T>(Expression<Func<T, Boolean>>)

Overloaded. Asynchronously returns an Int64 that represents the number of elements in a sequence that satisfy a condition.(Defined by QueryableExtensions.)

System_CAPS_pubmethodLongCountAsync<T>(Expression<Func<T, Boolean>>, CancellationToken)

Overloaded. Asynchronously returns an Int64 that represents the number of elements in a sequence that satisfy a condition.(Defined by QueryableExtensions.)

System_CAPS_pubmethodMaxAsync<T>()

Overloaded. Asynchronously returns the maximum value of a sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodMaxAsync<T>(CancellationToken)

Overloaded. Asynchronously returns the maximum value of a sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodMaxAsync<T, TResult>(Expression<Func<T, TResult>>)

Overloaded. Asynchronously invokes a projection function on each element of a sequence and returns the maximum resulting value.(Defined by QueryableExtensions.)

System_CAPS_pubmethodMaxAsync<T, TResult>(Expression<Func<T, TResult>>, CancellationToken)

Overloaded. Asynchronously invokes a projection function on each element of a sequence and returns the maximum resulting value.(Defined by QueryableExtensions.)

System_CAPS_pubmethodMinAsync<T>()

Overloaded. Asynchronously returns the minimum value of a sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodMinAsync<T>(CancellationToken)

Overloaded. Asynchronously returns the minimum value of a sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodMinAsync<T, TResult>(Expression<Func<T, TResult>>)

Overloaded. Asynchronously invokes a projection function on each element of a sequence and returns the minimum resulting value.(Defined by QueryableExtensions.)

System_CAPS_pubmethodMinAsync<T, TResult>(Expression<Func<T, TResult>>, CancellationToken)

Overloaded. Asynchronously invokes a projection function on each element of a sequence and returns the minimum resulting value.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSingleAsync<T>()

Overloaded. Asynchronously returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSingleAsync<T>(CancellationToken)

Overloaded. Asynchronously returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSingleAsync<T>(Expression<Func<T, Boolean>>)

Overloaded. Asynchronously returns the only element of a sequence that satisfies a specified condition, and throws an exception if more than one such element exists.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSingleAsync<T>(Expression<Func<T, Boolean>>, CancellationToken)

Overloaded. Asynchronously returns the only element of a sequence that satisfies a specified condition, and throws an exception if more than one such element exists.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSingleOrDefaultAsync<T>()

Overloaded. Asynchronously returns the only element of a sequence, or a default value if the sequence is empty; this method throws an exception if there is more than one element in the sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSingleOrDefaultAsync<T>(CancellationToken)

Overloaded. Asynchronously returns the only element of a sequence, or a default value if the sequence is empty; this method throws an exception if there is more than one element in the sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSingleOrDefaultAsync<T>(Expression<Func<T, Boolean>>)

Overloaded. Asynchronously returns the only element of a sequence that satisfies a specified condition or a default value if no such element exists; this method throws an exception if more than one element satisfies the condition.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSingleOrDefaultAsync<T>(Expression<Func<T, Boolean>>, CancellationToken)

Overloaded. Asynchronously returns the only element of a sequence that satisfies a specified condition or a default value if no such element exists; this method throws an exception if more than one element satisfies the condition.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSkip<T>(Expression<Func<Int32>>)

Bypasses a specified number of elements in a sequence and then returns the remaining elements.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Decimal>>)

Overloaded. Asynchronously computes the sum of the sequence of Decimal values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Decimal>>, CancellationToken)

Overloaded. Asynchronously computes the sum of the sequence of Decimal values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Double>>)

Overloaded. Asynchronously computes the sum of the sequence of Double values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Double>>, CancellationToken)

Overloaded. Asynchronously computes the sum of the sequence of Double values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Int32>>)

Overloaded. Asynchronously computes the sum of the sequence of Int32 values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Int32>>, CancellationToken)

Overloaded. Asynchronously computes the sum of the sequence of Int32 values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Int64>>)

Overloaded. Asynchronously computes the sum of the sequence of Int64 values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Int64>>, CancellationToken)

Overloaded. Asynchronously computes the sum of the sequence of Int64 values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Nullable<Decimal>>>)

Overloaded. Asynchronously computes the sum of the sequence of nullable Decimal values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Nullable<Decimal>>>, CancellationToken)

Overloaded. Asynchronously computes the sum of the sequence of nullable Decimal values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Nullable<Double>>>)

Overloaded. Asynchronously computes the sum of the sequence of nullable Double values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Nullable<Double>>>, CancellationToken)

Overloaded. Asynchronously computes the sum of the sequence of nullable Double values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Nullable<Int32>>>)

Overloaded. Asynchronously computes the sum of the sequence of nullable Int32 values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Nullable<Int32>>>, CancellationToken)

Overloaded. Asynchronously computes the sum of the sequence of nullable Int32 values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Nullable<Int64>>>)

Overloaded. Asynchronously computes the sum of the sequence of nullable Int64 values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Nullable<Int64>>>, CancellationToken)

Overloaded. Asynchronously computes the sum of the sequence of nullable Int64 values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Nullable<Single>>>)

Overloaded. Asynchronously computes the sum of the sequence of nullable Single values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Nullable<Single>>>, CancellationToken)

Overloaded. Asynchronously computes the sum of the sequence of nullable Single values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Single>>)

Overloaded. Asynchronously computes the sum of the sequence of Single values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodSumAsync<T>(Expression<Func<T, Single>>, CancellationToken)

Overloaded. Asynchronously computes the sum of the sequence of Single values that is obtained by invoking a projection function on each element of the input sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodTake<T>(Expression<Func<Int32>>)

Returns a specified number of contiguous elements from the start of a sequence.(Defined by QueryableExtensions.)

System_CAPS_pubmethodToArrayAsync<T>()

Overloaded. Creates an array from an IQueryable<T> by enumerating it asynchronously.(Defined by QueryableExtensions.)

System_CAPS_pubmethodToArrayAsync<T>(CancellationToken)

Overloaded. Creates an array from an IQueryable<T> by enumerating it asynchronously.(Defined by QueryableExtensions.)

System_CAPS_pubmethodToDictionaryAsync<T, TKey>(Func<T, TKey>)

Overloaded. Creates a Dictionary<TKey, TValue> from an IQueryable<T> by enumerating it asynchronously according to a specified key selector function.(Defined by QueryableExtensions.)

System_CAPS_pubmethodToDictionaryAsync<T, TKey>(Func<T, TKey>, CancellationToken)

Overloaded. Creates a Dictionary<TKey, TValue> from an IQueryable<T> by enumerating it asynchronously according to a specified key selector function.(Defined by QueryableExtensions.)

System_CAPS_pubmethodToDictionaryAsync<T, TKey>(Func<T, TKey>, IEqualityComparer<TKey>)

Overloaded. Creates a Dictionary<TKey, TValue> from an IQueryable<T> by enumerating it asynchronously according to a specified key selector function and a comparer.(Defined by QueryableExtensions.)

System_CAPS_pubmethodToDictionaryAsync<T, TKey>(Func<T, TKey>, IEqualityComparer<TKey>, CancellationToken)

Overloaded. Creates a Dictionary<TKey, TValue> from an IQueryable<T> by enumerating it asynchronously according to a specified key selector function and a comparer.(Defined by QueryableExtensions.)

System_CAPS_pubmethodToDictionaryAsync<T, TKey, TElement>(Func<T, TKey>, Func<T, TElement>)

Overloaded. Creates a Dictionary<TKey, TValue> from an IQueryable<T> by enumerating it asynchronously according to a specified key selector and an element selector function.(Defined by QueryableExtensions.)

System_CAPS_pubmethodToDictionaryAsync<T, TKey, TElement>(Func<T, TKey>, Func<T, TElement>, CancellationToken)

Overloaded. Creates a Dictionary<TKey, TValue> from an IQueryable<T> by enumerating it asynchronously according to a specified key selector and an element selector function.(Defined by QueryableExtensions.)

System_CAPS_pubmethodToDictionaryAsync<T, TKey, TElement>(Func<T, TKey>, Func<T, TElement>, IEqualityComparer<TKey>)

Overloaded. Creates a Dictionary<TKey, TValue> from an IQueryable<T> by enumerating it asynchronously according to a specified key selector function, a comparer, and an element selector function.(Defined by QueryableExtensions.)

System_CAPS_pubmethodToDictionaryAsync<T, TKey, TElement>(Func<T, TKey>, Func<T, TElement>, IEqualityComparer<TKey>, CancellationToken)

Overloaded. Creates a Dictionary<TKey, TValue> from an IQueryable<T> by enumerating it asynchronously according to a specified key selector function, a comparer, and an element selector function.(Defined by QueryableExtensions.)

System_CAPS_pubmethodToListAsync()

Overloaded. Creates a List<T> from an IQueryable by enumerating it asynchronously.(Defined by QueryableExtensions.)

System_CAPS_pubmethodToListAsync(CancellationToken)

Overloaded. Creates a List<T> from an IQueryable by enumerating it asynchronously.(Defined by QueryableExtensions.)

System_CAPS_pubmethodToListAsync<T>()

Overloaded. Creates a List<T> from an IQueryable<T> by enumerating it asynchronously.(Defined by QueryableExtensions.)

System_CAPS_pubmethodToListAsync<T>(CancellationToken)

Overloaded. Creates a List<T> from an IQueryable<T> by enumerating it asynchronously.(Defined by QueryableExtensions.)

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.