Click or drag to resize
QueryableExtensionMethods Methods

The QueryableExtensionMethods type exposes the following members.

Methods
  NameDescription
Public methodStatic memberCacheResultset<TSource>(IQueryable<TSource>, Int32)
Specifies that the query's resultset should be cached for the duration specified.
Public methodStatic memberCacheResultset<TSource>(IQueryable<TSource>, TimeSpan)
Specifies that the query's resultset should be cached for the duration specified.
Public methodStatic memberCacheResultset<TSource>(IQueryable<TSource>, Int32, Boolean)
Specifies that the query's resultset should be cached for the duration specified.
Public methodStatic memberCacheResultset<TSource>(IQueryable<TSource>, Int32, String)
Specifies that the query's resultset should be cached for the duration specified.
Public methodStatic memberCacheResultset<TSource>(IQueryable<TSource>, TimeSpan, Boolean)
Specifies that the query's resultset should be cached for the duration specified.
Public methodStatic memberCacheResultset<TSource>(IQueryable<TSource>, TimeSpan, String)
Specifies that the query's resultset should be cached for the duration specified.
Public methodStatic memberCacheResultset<TSource>(IQueryable<TSource>, Int32, Boolean, String)
Specifies that the query's resultset should be cached for the duration specified.
Public methodStatic memberCacheResultset<TSource>(IQueryable<TSource>, TimeSpan, Boolean, String)
Specifies that the query's resultset should be cached for the duration specified.
Public methodStatic memberCountColumn<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>)
returns the number of values in the set specified by selector which is 1 column wide.
Public methodStatic memberCountColumn<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>, Boolean)
returns the number of distinct values in the set specified by selector which is 1 column wide
Public methodStatic memberCountColumnAsync<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>)
Async variant of CountColumn
Public methodStatic memberCountColumnAsync<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>, Boolean)
Async variant of CountColumn.
Public methodStatic memberCountColumnAsync<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>, CancellationToken)
Async variant of CountColumn.
Public methodStatic memberCountColumnAsync<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>, Boolean, CancellationToken)
Async variant of CountColumn.
Public methodStatic memberExcludeFields<TSource>
Specifies a list of fields to exclude for an entity fetch.
Public methodStatic memberExecute(IQueryable)
Executes the specified IQueryable. Requires the IQueryable to implement ILLBLGenProQuery.
Public methodStatic memberExecute<TResult>(IQueryable)
Executes the specified IQueryable. Requires the IQueryable to implement ILLBLGenProQuery.
Public methodStatic memberExecuteAsync(IQueryable)
Executes the specified IQueryable's asynchronously. Requires the IQueryable to implement ILLBLGenProQuery.
Public methodStatic memberExecuteAsync(IQueryable, CancellationToken)
Executes the specified IQueryable's asynchronously. Requires the IQueryable to implement ILLBLGenProQuery.
Public methodStatic memberExecuteAsync<TResult>(IQueryable)
Executes the specified IQueryable's asynchronously. Requires the IQueryable to implement ILLBLGenProQuery.
Public methodStatic memberExecuteAsync<TResult>(IQueryable, CancellationToken)
Executes the specified IQueryable's asynchronously. Requires the IQueryable to implement ILLBLGenProQuery.
Public methodStatic memberIncludeFields<TSource>
Specifies a list of fields to include for an entity fetch. All fields not specified aren't fetched (fields which are required like fk fields are always fetched)
Public methodStatic memberStandardDeviation<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>)
returns the standard deviation over the column specified by selector.
Public methodStatic memberStandardDeviation<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>, Boolean)
returns the standard deviation over the column specified by selector.
Public methodStatic memberStandardDeviationAsync<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>)
Async variant of StandardDeviation.
Public methodStatic memberStandardDeviationAsync<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>, Boolean)
Async variant of StandardDeviation.
Public methodStatic memberStandardDeviationAsync<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>, CancellationToken)
Async variant of StandardDeviation.
Public methodStatic memberStandardDeviationAsync<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>, Boolean, CancellationToken)
Async variant of StandardDeviation.
Public methodStatic memberTakePage<TSource>
Returns the pageNumber-th page of size pageSize from the sequence the method is applied on.
Public methodStatic memberToArrayAsync<TResult>(IQueryable<TResult>)
Executes source asynchronously and stores the results in a new TResult[]. Requires the IQueryable to implement ILLBLGenProQuery.
Public methodStatic memberToArrayAsync<TResult>(IQueryable<TResult>, CancellationToken)
Executes source asynchronously and stores the results in a new TResult[]. Requires the IQueryable to implement ILLBLGenProQuery.
Public methodStatic memberToListAsync<TResult>(IQueryable<TResult>)
Executes source asynchronously and stores the results in a new List(Of TResult). Requires the IQueryable to implement ILLBLGenProQuery.
Public methodStatic memberToListAsync<TResult>(IQueryable<TResult>, CancellationToken)
Executes source asynchronously and stores the results in a new List(Of TResult). Requires the IQueryable to implement ILLBLGenProQuery.
Public methodStatic memberVariance<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>)
returns the variance over the column specified by selector.
Public methodStatic memberVariance<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>, Boolean)
returns the variance over the column specified by selector.
Public methodStatic memberVarianceAsync<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>)
Async variant of Variance.
Public methodStatic memberVarianceAsync<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>, Boolean)
Async variant of Variance.
Public methodStatic memberVarianceAsync<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>, CancellationToken)
Async variant of Variance.
Public methodStatic memberVarianceAsync<TSource, TColumnType>(IQueryable<TSource>, Expression<Func<TSource, TColumnType>>, Boolean, CancellationToken)
Async variant of Variance.
Public methodStatic memberWithPath<TSource>(IQueryable<TSource>,IPathEdge[])
Specifies a prefetch path with the edges specified when fetching source.
Public methodStatic memberWithPath<TSource>(IQueryable<TSource>, IPrefetchPathCore)
Specifies a prefetch path for the source. Use this overload if you have existing code which produces prefetch path objects for you
Public methodStatic memberCode exampleWithPath<TSource>(IQueryable<TSource>, Func<IPathEdgeRootParser<TSource>, IPathEdgeRootParser<TSource>>)
Specifies a prefetch path with the path edges specified in the form of a chain of method calls using lambda expressions.
Top
See Also