IObjectSet<TEntity> Interface

 

Defines behavior for implementations of IQueryable that allow modifications to the membership of the resulting set.

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

[SuppressMessageAttribute("Microsoft.Naming", "CA1710:IdentifiersShouldHaveCorrectSuffix")]
public interface IObjectSet<TEntity> : IQueryable<TEntity>, IEnumerable<TEntity>, 
	IQueryable, IEnumerable
where TEntity : class

Type Parameters

TEntity

Type of entities returned from the queryable.

NameDescription
System_CAPS_pubpropertyElementType

(Inherited from IQueryable.)

System_CAPS_pubpropertyExpression

(Inherited from IQueryable.)

System_CAPS_pubpropertyProvider

(Inherited from IQueryable.)

NameDescription
System_CAPS_pubmethodAddObject(TEntity)

Notifies the set that an object that represents a new entity must be added to the set.

System_CAPS_pubmethodAttach(TEntity)

Notifies the set that an object that represents an existing entity must be added to the set.

System_CAPS_pubmethodDeleteObject(TEntity)

Notifies the set that an object that represents an existing entity must be deleted from the set.

System_CAPS_pubmethodDetach(TEntity)

Notifies the set that an object that represents an existing entity must be detached from the set.

System_CAPS_pubmethodGetEnumerator()

(Inherited from IEnumerable<T>.)

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

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

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

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

System_CAPS_pubmethodAnyAsync<TEntity>()

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

System_CAPS_pubmethodAnyAsync<TEntity>(CancellationToken)

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

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

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

System_CAPS_pubmethodAnyAsync<TEntity>(Expression<Func<TEntity, 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<TEntity>()

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<TEntity>()

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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(TEntity)

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

System_CAPS_pubmethodContainsAsync<TEntity>(TEntity, CancellationToken)

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

System_CAPS_pubmethodCountAsync<TEntity>()

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

System_CAPS_pubmethodCountAsync<TEntity>(CancellationToken)

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

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

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

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

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

System_CAPS_pubmethodFirstAsync<TEntity>()

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

System_CAPS_pubmethodFirstAsync<TEntity>(CancellationToken)

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

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

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

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

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

System_CAPS_pubmethodFirstOrDefaultAsync<TEntity>()

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<TEntity>(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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Action<TEntity>)

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

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

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

System_CAPS_pubmethodInclude(String)

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

System_CAPS_pubmethodInclude<TEntity>(String)

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

System_CAPS_pubmethodInclude<TEntity, TProperty>(Expression<Func<TEntity, 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<TEntity>()

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

System_CAPS_pubmethodLongCountAsync<TEntity>(CancellationToken)

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

System_CAPS_pubmethodLongCountAsync<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>()

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

System_CAPS_pubmethodMaxAsync<TEntity>(CancellationToken)

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

System_CAPS_pubmethodMaxAsync<TEntity, TResult>(Expression<Func<TEntity, 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<TEntity, TResult>(Expression<Func<TEntity, 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<TEntity>()

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

System_CAPS_pubmethodMinAsync<TEntity>(CancellationToken)

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

System_CAPS_pubmethodMinAsync<TEntity, TResult>(Expression<Func<TEntity, 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<TEntity, TResult>(Expression<Func<TEntity, 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<TEntity>()

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<TEntity>(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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>()

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<TEntity>(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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<Int32>>)

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

System_CAPS_pubmethodSumAsync<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<TEntity, 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<TEntity>(Expression<Func<Int32>>)

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

System_CAPS_pubmethodToArrayAsync<TEntity>()

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

System_CAPS_pubmethodToArrayAsync<TEntity>(CancellationToken)

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

System_CAPS_pubmethodToDictionaryAsync<TEntity, TKey>(Func<TEntity, 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<TEntity, TKey>(Func<TEntity, 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<TEntity, TKey>(Func<TEntity, 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<TEntity, TKey>(Func<TEntity, 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<TEntity, TKey, TElement>(Func<TEntity, TKey>, Func<TEntity, 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<TEntity, TKey, TElement>(Func<TEntity, TKey>, Func<TEntity, 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<TEntity, TKey, TElement>(Func<TEntity, TKey>, Func<TEntity, 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<TEntity, TKey, TElement>(Func<TEntity, TKey>, Func<TEntity, 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<TEntity>()

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

System_CAPS_pubmethodToListAsync<TEntity>(CancellationToken)

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