IRepositoryAsyncTAllIncluding Method |
Get an IQueryable interface for the repository including child object / collection references
Namespace: AccidentalFish.ApplicationSupport.Core.RepositoryAssembly: AccidentalFish.ApplicationSupport.Core (in AccidentalFish.ApplicationSupport.Core.dll) Version: 1.0.4.0 (1.0.4.0)
SyntaxIQueryable<T> AllIncluding(
params Expression<Func<T, Object>>[] includeProperties
)
Function AllIncluding (
ParamArray includeProperties As Expression(Of Func(Of T, Object))()
) As IQueryable(Of T)
IQueryable<T>^ AllIncluding(
... array<Expression<Func<T, Object^>^>^>^ includeProperties
)
abstract AllIncluding :
includeProperties : Expression<Func<'T, Object>>[] -> IQueryable<'T>
Parameters
- includeProperties
- Type: System.Linq.ExpressionsExpressionFuncT, Object
The child object / collection references to also fetch
Return Value
Type:
IQueryableTAn IQueryable interface
See Also