Condividi tramite


AsyncQueryableExtensions Class

Definition

Extension methods to construct queries.

They are all placeholders for now.

public static class AsyncQueryableExtensions
type AsyncQueryableExtensions = class
Public Module AsyncQueryableExtensions
Inheritance
AsyncQueryableExtensions

Methods

AsUpdatable<TEntity>(IAsyncQueryable<TEntity>)

Initialize an update action.

AsUpdatable<TEntity>(TEntity)

Initialize an update action.

Get<TSource,TResult>(IAsyncQueryable<TSource>, Expression<Func<TSource,IAsyncQueryable<TResult>>>)

Gets a child collection to be returned from the query.

Skip<TEntity>(IAsyncQueryable<TEntity>, Int32)

Bypasses a specified number of elements in a query and returns the remaining elements.

Take<TEntity>(IAsyncQueryable<TEntity>, Int32)

Returns a specified number of elements from the query.

Where<TEntity>(IAsyncQueryable<TEntity>, Expression<Func<TEntity,Boolean>>)

Filters a sequence of values based on a predicate.

With<TEntity>(IAsyncQueryable<TEntity>, Expression<Func<TEntity,IAsyncQueryable>>)

Include a child collection in the query result.

With<TEntity>(IAsyncQueryable<TEntity>, Expression<Func<TEntity,IAsyncQueryable>>, Boolean)
Obsolete.

Include a child collection in the query result.

With<TEntity>(IAsyncQueryable<TEntity>, Expression<Func<TEntity,Object>>)

Include a specific property in the query result.

WithRequired<TEntity>(IAsyncQueryable<TEntity>, Expression<Func<TEntity,IAsyncQueryable>>)

Include a non-empty child collection in the query result.

Applies to