ObjectSet<TEntity> Class
Represents a typed entity set that is used to perform create, read, update, and delete operations.
Assembly: EntityFramework (in EntityFramework.dll)
System.Data.Entity.Core.Objects.ObjectQuery
System.Data.Entity.Core.Objects.ObjectQuery<T>
System.Data.Entity.Core.Objects.ObjectSet<TEntity>
[SuppressMessageAttribute("Microsoft.Naming", "CA1710:IdentifiersShouldHaveCorrectSuffix")] public class ObjectSet<TEntity> : ObjectQuery<TEntity>, IObjectSet<TEntity>, IQueryable<TEntity>, IEnumerable<TEntity>, IQueryable, IEnumerable where TEntity : class
Type Parameters
- TEntity
The type of the entity.
Name | Description | |
---|---|---|
![]() | CommandText | Returns the command text for the query.(Inherited from ObjectQuery.) |
![]() | Context | Gets the object context associated with this object query.(Inherited from ObjectQuery.) |
![]() | EnablePlanCaching | Gets or sets a value that indicates whether the query plan should be cached.(Inherited from ObjectQuery.) |
![]() | EntitySet | Gets the metadata of the entity set represented by this ObjectSet<TEntity> instance. |
![]() | MergeOption | Gets or sets how objects returned from a query are added to the object context.(Inherited from ObjectQuery.) |
![]() | Name | Gets or sets the name of this object query.(Inherited from ObjectQuery<T>.) |
![]() | Parameters | Gets the parameter collection for this object query.(Inherited from ObjectQuery.) |
![]() | Streaming | Whether the query is streaming or buffering(Inherited from ObjectQuery.) |
Name | Description | |
---|---|---|
![]() | AddObject(TEntity) | Adds an object to the object context in the current entity set. |
![]() | ApplyCurrentValues(TEntity) | Copies the scalar values from the supplied object into the object in the ObjectContext that has the same key. |
![]() | ApplyOriginalValues(TEntity) | Sets the OriginalValues property of an ObjectStateEntry to match the property values of a supplied object. |
![]() | Attach(TEntity) | Attaches an object or object graph to the object context in the current entity set. |
![]() | CreateObject() | Creates a new entity type object. |
![]() | CreateObject<T>() | Creates an instance of the specified type. |
![]() | DeleteObject(TEntity) | Marks an object for deletion. |
![]() | Detach(TEntity) | Removes the object from the object context. |
![]() | Distinct() | Limits the query to unique results.(Inherited from ObjectQuery<T>.) |
![]() | Equals(Object) | (Inherited from Object.) |
![]() | Except(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.(Inherited from ObjectQuery<T>.) |
![]() | Execute(MergeOption) | Executes the object query with the specified merge option.(Inherited from ObjectQuery<T>.) |
![]() | ExecuteAsync(MergeOption) | Asynchronously executes the object query with the specified merge option.(Inherited from ObjectQuery<T>.) |
![]() | ExecuteAsync(MergeOption, CancellationToken) | Asynchronously executes the object query with the specified merge option.(Inherited from ObjectQuery<T>.) |
![]() | Finalize() | (Inherited from Object.) |
![]() | GetHashCode() | (Inherited from Object.) |
![]() | GetResultType() | Returns information about the result type of the query.(Inherited from ObjectQuery.) |
![]() | GetType() | (Inherited from Object.) |
![]() | GroupBy(String, String, ObjectParameter[]) | Groups the query results by the specified criteria.(Inherited from ObjectQuery<T>.) |
![]() | Include(String) | Specifies the related objects to include in the query results.(Inherited from ObjectQuery<T>.) |
![]() | Intersect(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.(Inherited from ObjectQuery<T>.) |
![]() | MemberwiseClone() | (Inherited from Object.) |
![]() | OfType<TResultType>() | Limits the query to only results of a specific type.(Inherited from ObjectQuery<T>.) |
![]() | OrderBy(String, ObjectParameter[]) | Orders the query results by the specified criteria.(Inherited from ObjectQuery<T>.) |
![]() | Select(String, ObjectParameter[]) | Limits the query results to only the properties that are defined in the specified projection.(Inherited from ObjectQuery<T>.) |
![]() | SelectValue<TResultType>(String, ObjectParameter[]) | Limits the query results to only the property specified in the projection.(Inherited from ObjectQuery<T>.) |
![]() | Skip(String, String, ObjectParameter[]) | Orders the query results by the specified criteria and skips a specified number of results.(Inherited from ObjectQuery<T>.) |
![]() | Top(String, ObjectParameter[]) | Limits the query results to a specified number of items.(Inherited from ObjectQuery<T>.) |
![]() | ToString() | (Inherited from Object.) |
![]() | ToTraceString() | Returns the commands to execute against the data source.(Inherited from ObjectQuery.) |
![]() | Union(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).(Inherited from ObjectQuery<T>.) |
![]() | UnionAll(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).(Inherited from ObjectQuery<T>.) |
![]() | Where(String, ObjectParameter[]) | Limits the query to results that match specified filtering criteria.(Inherited from ObjectQuery<T>.) |
Name | Description | |
---|---|---|
![]() ![]() | IEnumerable<T>.GetEnumerator() | Returns an IEnumerator<T> which when enumerated will execute the given SQL query against the database.(Inherited from ObjectQuery<T>.) |
![]() ![]() | IEnumerable.GetEnumerator() | Returns an enumerator that iterates through a collection.(Inherited from ObjectQuery.) |
![]() ![]() | IListSource.GetList() | Returns the collection as an IList used for data binding.(Inherited from ObjectQuery.) |
![]() ![]() | IDbAsyncEnumerable.GetAsyncEnumerator() | Returns an IDbAsyncEnumerator which when enumerated will execute the given SQL query against the database.(Inherited from ObjectQuery.) |
![]() ![]() | IDbAsyncEnumerable<T>.GetAsyncEnumerator() | Returns an IDbAsyncEnumerator<T> which when enumerated will execute the given SQL query against the database.(Inherited from ObjectQuery<T>.) |
Name | Description | |
---|---|---|
![]() | AllAsync<TEntity>(Expression<Func<TEntity, Boolean>>) | Overloaded. Asynchronously determines whether all the elements of a sequence satisfy a condition.(Defined by QueryableExtensions.) |
![]() | AllAsync<TEntity>(Expression<Func<TEntity, Boolean>>, CancellationToken) | Overloaded. Asynchronously determines whether all the elements of a sequence satisfy a condition.(Defined by QueryableExtensions.) |
![]() | AnyAsync<TEntity>() | Overloaded. Asynchronously determines whether a sequence contains any elements.(Defined by QueryableExtensions.) |
![]() | AnyAsync<TEntity>(CancellationToken) | Overloaded. Asynchronously determines whether a sequence contains any elements.(Defined by QueryableExtensions.) |
![]() | AnyAsync<TEntity>(Expression<Func<TEntity, Boolean>>) | Overloaded. Asynchronously determines whether any element of a sequence satisfies a condition.(Defined by QueryableExtensions.) |
![]() | AnyAsync<TEntity>(Expression<Func<TEntity, Boolean>>, CancellationToken) | Overloaded. Asynchronously determines whether any element of a sequence satisfies a condition.(Defined by QueryableExtensions.) |
![]() | AsNoTracking() | 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.) |
![]() | AsNoTracking<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.) |
![]() | AsStreaming() | 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.) |
![]() | AsStreaming<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | AverageAsync<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.) |
![]() | ContainsAsync<TEntity>(TEntity) | Overloaded. Asynchronously determines whether a sequence contains a specified element by using the default equality comparer.(Defined by QueryableExtensions.) |
![]() | ContainsAsync<TEntity>(TEntity, CancellationToken) | Overloaded. Asynchronously determines whether a sequence contains a specified element by using the default equality comparer.(Defined by QueryableExtensions.) |
![]() | CountAsync<TEntity>() | Overloaded. Asynchronously returns the number of elements in a sequence.(Defined by QueryableExtensions.) |
![]() | CountAsync<TEntity>(CancellationToken) | Overloaded. Asynchronously returns the number of elements in a sequence.(Defined by QueryableExtensions.) |
![]() | CountAsync<TEntity>(Expression<Func<TEntity, Boolean>>) | Overloaded. Asynchronously returns the number of elements in a sequence that satisfy a condition.(Defined by QueryableExtensions.) |
![]() | CountAsync<TEntity>(Expression<Func<TEntity, Boolean>>, CancellationToken) | Overloaded. Asynchronously returns the number of elements in a sequence that satisfy a condition.(Defined by QueryableExtensions.) |
![]() | FirstAsync<TEntity>() | Overloaded. Asynchronously returns the first element of a sequence.(Defined by QueryableExtensions.) |
![]() | FirstAsync<TEntity>(CancellationToken) | Overloaded. Asynchronously returns the first element of a sequence.(Defined by QueryableExtensions.) |
![]() | FirstAsync<TEntity>(Expression<Func<TEntity, Boolean>>) | Overloaded. Asynchronously returns the first element of a sequence that satisfies a specified condition.(Defined by QueryableExtensions.) |
![]() | FirstAsync<TEntity>(Expression<Func<TEntity, Boolean>>, CancellationToken) | Overloaded. Asynchronously returns the first element of a sequence that satisfies a specified condition.(Defined by QueryableExtensions.) |
![]() | FirstOrDefaultAsync<TEntity>() | Overloaded. Asynchronously returns the first element of a sequence, or a default value if the sequence contains no elements.(Defined by QueryableExtensions.) |
![]() | FirstOrDefaultAsync<TEntity>(CancellationToken) | Overloaded. Asynchronously returns the first element of a sequence, or a default value if the sequence contains no elements.(Defined by QueryableExtensions.) |
![]() | FirstOrDefaultAsync<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.) |
![]() | FirstOrDefaultAsync<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.) |
![]() | ForEachAsync(Action<Object>) | Overloaded. Asynchronously enumerates the query results and performs the specified action on each element.(Defined by QueryableExtensions.) |
![]() | ForEachAsync(Action<Object>, CancellationToken) | Overloaded. Asynchronously enumerates the query results and performs the specified action on each element.(Defined by QueryableExtensions.) |
![]() | ForEachAsync<TEntity>(Action<TEntity>) | Overloaded. Asynchronously enumerates the query results and performs the specified action on each element.(Defined by QueryableExtensions.) |
![]() | ForEachAsync<TEntity>(Action<TEntity>, CancellationToken) | Overloaded. Asynchronously enumerates the query results and performs the specified action on each element.(Defined by QueryableExtensions.) |
![]() | Include<TEntity>(String) | Overloaded. Specifies the related objects to include in the query results.(Defined by QueryableExtensions.) |
![]() | Include<TEntity, TProperty>(Expression<Func<TEntity, TProperty>>) | Overloaded. Specifies the related objects to include in the query results.(Defined by QueryableExtensions.) |
![]() | Load() | 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.) |
![]() | LoadAsync() | 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.) |
![]() | LoadAsync(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.) |
![]() | LongCountAsync<TEntity>() | Overloaded. Asynchronously returns an Int64 that represents the total number of elements in a sequence.(Defined by QueryableExtensions.) |
![]() | LongCountAsync<TEntity>(CancellationToken) | Overloaded. Asynchronously returns an Int64 that represents the total number of elements in a sequence.(Defined by QueryableExtensions.) |
![]() | LongCountAsync<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.) |
![]() | LongCountAsync<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.) |
![]() | MaxAsync<TEntity>() | Overloaded. Asynchronously returns the maximum value of a sequence.(Defined by QueryableExtensions.) |
![]() | MaxAsync<TEntity>(CancellationToken) | Overloaded. Asynchronously returns the maximum value of a sequence.(Defined by QueryableExtensions.) |
![]() | MaxAsync<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.) |
![]() | MaxAsync<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.) |
![]() | MinAsync<TEntity>() | Overloaded. Asynchronously returns the minimum value of a sequence.(Defined by QueryableExtensions.) |
![]() | MinAsync<TEntity>(CancellationToken) | Overloaded. Asynchronously returns the minimum value of a sequence.(Defined by QueryableExtensions.) |
![]() | MinAsync<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.) |
![]() | MinAsync<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.) |
![]() | SingleAsync<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.) |
![]() | SingleAsync<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.) |
![]() | SingleAsync<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.) |
![]() | SingleAsync<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.) |
![]() | SingleOrDefaultAsync<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.) |
![]() | SingleOrDefaultAsync<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.) |
![]() | SingleOrDefaultAsync<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.) |
![]() | SingleOrDefaultAsync<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.) |
![]() | Skip<TEntity>(Expression<Func<Int32>>) | Bypasses a specified number of elements in a sequence and then returns the remaining elements.(Defined by QueryableExtensions.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | SumAsync<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.) |
![]() | Take<TEntity>(Expression<Func<Int32>>) | Returns a specified number of contiguous elements from the start of a sequence.(Defined by QueryableExtensions.) |
![]() | ToArrayAsync<TEntity>() | Overloaded. Creates an array from an IQueryable<T> by enumerating it asynchronously.(Defined by QueryableExtensions.) |
![]() | ToArrayAsync<TEntity>(CancellationToken) | Overloaded. Creates an array from an IQueryable<T> by enumerating it asynchronously.(Defined by QueryableExtensions.) |
![]() | ToDictionaryAsync<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.) |
![]() | ToDictionaryAsync<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.) |
![]() | ToDictionaryAsync<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.) |
![]() | ToDictionaryAsync<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.) |
![]() | ToDictionaryAsync<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.) |
![]() | ToDictionaryAsync<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.) |
![]() | ToDictionaryAsync<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.) |
![]() | ToDictionaryAsync<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.) |
![]() | ToListAsync() | Overloaded. Creates a List<T> from an IQueryable by enumerating it asynchronously.(Defined by QueryableExtensions.) |
![]() | ToListAsync(CancellationToken) | Overloaded. Creates a List<T> from an IQueryable by enumerating it asynchronously.(Defined by QueryableExtensions.) |
![]() | ToListAsync<TEntity>() | Overloaded. Creates a List<T> from an IQueryable<T> by enumerating it asynchronously.(Defined by QueryableExtensions.) |
![]() | ToListAsync<TEntity>(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.