Click or drag to resize
QueryableExtensionMethods Class
Class for the LLBLGen Pro extension methods for Queryable.
Class for the LLBLGen Pro extension methods for Queryable.
Inheritance Hierarchy
SystemObject
  SD.LLBLGen.Pro.LinqSupportClassesQueryableExtensionMethods

Namespace:  SD.LLBLGen.Pro.LinqSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.1.0.0 (5.1.0)
Syntax
public static class QueryableExtensionMethods

The QueryableExtensionMethods type exposes the following members.

Methods
  NameDescription
Public methodStatic memberCacheResultsetTSource(IQueryableTSource, Int32)
Specifies that the query's resultset should be cached for the duration specified.
Public methodStatic memberCacheResultsetTSource(IQueryableTSource, TimeSpan)
Specifies that the query's resultset should be cached for the duration specified.
Public methodStatic memberCacheResultsetTSource(IQueryableTSource, Int32, Boolean)
Specifies that the query's resultset should be cached for the duration specified.
Public methodStatic memberCacheResultsetTSource(IQueryableTSource, Int32, String)
Specifies that the query's resultset should be cached for the duration specified.
Public methodStatic memberCacheResultsetTSource(IQueryableTSource, TimeSpan, Boolean)
Specifies that the query's resultset should be cached for the duration specified.
Public methodStatic memberCacheResultsetTSource(IQueryableTSource, TimeSpan, String)
Specifies that the query's resultset should be cached for the duration specified.
Public methodStatic memberCacheResultsetTSource(IQueryableTSource, Int32, Boolean, String)
Specifies that the query's resultset should be cached for the duration specified.
Public methodStatic memberCacheResultsetTSource(IQueryableTSource, TimeSpan, Boolean, String)
Specifies that the query's resultset should be cached for the duration specified.
Public methodStatic memberCountColumnTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType)
returns the number of values in the set specified by selector which is 1 column wide.
Public methodStatic memberCountColumnTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType, Boolean)
returns the number of distinct values in the set specified by selector which is 1 column wide
Public methodStatic memberCountColumnAsyncTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType)
Async variant of CountColumn
Public methodStatic memberCountColumnAsyncTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType, Boolean)
Async variant of CountColumn.
Public methodStatic memberCountColumnAsyncTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType, CancellationToken)
Async variant of CountColumn.
Public methodStatic memberCountColumnAsyncTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType, Boolean, CancellationToken)
Async variant of CountColumn.
Public methodStatic memberExcludeFieldsTSource
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 memberExecuteTResult(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 memberExecuteAsyncTResult(IQueryable)
Executes the specified IQueryable's asynchronously. Requires the IQueryable to implement ILLBLGenProQuery.
Public methodStatic memberExecuteAsyncTResult(IQueryable, CancellationToken)
Executes the specified IQueryable's asynchronously. Requires the IQueryable to implement ILLBLGenProQuery.
Public methodStatic memberForBusinessTimeTSource
Specifies a temporal table predicate on source for the Business Time.
Public methodStatic memberForSystemTimeTSource
Specifies a temporal table predicate on source for the System Time.
Public methodStatic memberIncludeFieldsTSource
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 memberStandardDeviationTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType)
returns the standard deviation over the column specified by selector.
Public methodStatic memberStandardDeviationTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType, Boolean)
returns the standard deviation over the column specified by selector.
Public methodStatic memberStandardDeviationAsyncTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType)
Async variant of StandardDeviation.
Public methodStatic memberStandardDeviationAsyncTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType, Boolean)
Async variant of StandardDeviation.
Public methodStatic memberStandardDeviationAsyncTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType, CancellationToken)
Async variant of StandardDeviation.
Public methodStatic memberStandardDeviationAsyncTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType, Boolean, CancellationToken)
Async variant of StandardDeviation.
Public methodStatic memberTakePageTSource
Returns the pageNumber-th page of size pageSize from the sequence the method is applied on.
Public methodStatic memberToArrayAsyncTResult(IQueryableTResult)
Executes source asynchronously and stores the results in a new TResult[]. Requires the IQueryable to implement ILLBLGenProQuery.
Public methodStatic memberToArrayAsyncTResult(IQueryableTResult, CancellationToken)
Executes source asynchronously and stores the results in a new TResult[]. Requires the IQueryable to implement ILLBLGenProQuery.
Public methodStatic memberToListAsyncTResult(IQueryableTResult)
Executes source asynchronously and stores the results in a new List(Of TResult). Requires the IQueryable to implement ILLBLGenProQuery.
Public methodStatic memberToListAsyncTResult(IQueryableTResult, CancellationToken)
Executes source asynchronously and stores the results in a new List(Of TResult). Requires the IQueryable to implement ILLBLGenProQuery.
Public methodStatic memberVarianceTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType)
returns the variance over the column specified by selector.
Public methodStatic memberVarianceTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType, Boolean)
returns the variance over the column specified by selector.
Public methodStatic memberVarianceAsyncTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType)
Async variant of Variance.
Public methodStatic memberVarianceAsyncTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType, Boolean)
Async variant of Variance.
Public methodStatic memberVarianceAsyncTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType, CancellationToken)
Async variant of Variance.
Public methodStatic memberVarianceAsyncTSource, TColumnType(IQueryableTSource, ExpressionFuncTSource, TColumnType, Boolean, CancellationToken)
Async variant of Variance.
Public methodStatic memberWithHintTSource
Specifies a table/view hint for the target TSource is mapped on.
Public methodStatic memberWithPathTSource(IQueryableTSource, IPathEdge)
Specifies a prefetch path with the edges specified when fetching source.
Public methodStatic memberWithPathTSource(IQueryableTSource, 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 exampleWithPathTSource(IQueryableTSource, FuncIPathEdgeRootParserTSource, IPathEdgeRootParserTSource)
Specifies a prefetch path with the path edges specified in the form of a chain of method calls using lambda expressions.
Top
See Also