IUserSessionCompositeListT Method
|
Retrieves the collection of all objects of a given type as well as all objects related to the object type.
The includeExpression defines what to include.
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.3.169
Syntax IRavenQueryable<T> CompositeList<T>(
params Expression<Func<T, Object>>[] includeExpressions
)
Function CompositeList(Of T) (
ParamArray includeExpressions As Expression(Of Func(Of T, Object))()
) As IRavenQueryable(Of T)
generic<typename T>
IRavenQueryable<T>^ CompositeList(
... array<Expression<Func<T, Object^>^>^>^ includeExpressions
)
abstract CompositeList :
includeExpressions : Expression<Func<'T, Object>>[] -> IRavenQueryable<'T>
Parameters
- includeExpressions
- Type: System.Linq.ExpressionsExpressionFuncT, Object
The callbacks to determine what additional objects are retrieved together
Type Parameters
- T
- Type of the objects to retrieve
Return Value
Type:
IRavenQueryableTCollection of objects with a given type. At the same time, included objects are retireved to reduce content-store calls. Deferred execution.
See Also