GeneralRepositoryGetAllTEntity(ExpressionFuncTEntity, Boolean, GetAllOptions, ISubEntityFetchPlan) Method
Namespace: Ignition.Framework.RepositoriesAssembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
public ICollection<TEntity> GetAll<TEntity>(
Expression<Func<TEntity, bool>> predicate = null,
GetAllOptions options = GetAllOptions.ExcludeDeleted,
ISubEntityFetchPlan subEntityFetchPlan = null
)
where TEntity : new(), NetForumEntity
Public Function GetAll(Of TEntity As {New, NetForumEntity}) (
Optional predicate As Expression(Of Func(Of TEntity, Boolean)) = Nothing,
Optional options As GetAllOptions = GetAllOptions.ExcludeDeleted,
Optional subEntityFetchPlan As ISubEntityFetchPlan = Nothing
) As ICollection(Of TEntity)
public:
generic<typename TEntity>
where TEntity : gcnew(), NetForumEntity
virtual ICollection<TEntity>^ GetAll(
Expression<Func<TEntity, bool>^>^ predicate = nullptr,
GetAllOptions options = GetAllOptions::ExcludeDeleted,
ISubEntityFetchPlan^ subEntityFetchPlan = nullptr
) sealed
abstract GetAll :
?predicate : Expression<Func<'TEntity, bool>> *
?options : GetAllOptions *
?subEntityFetchPlan : ISubEntityFetchPlan
(* Defaults:
let _predicate = defaultArg predicate null
let _options = defaultArg options GetAllOptions.ExcludeDeleted
let _subEntityFetchPlan = defaultArg subEntityFetchPlan null
*)
-> ICollection<'TEntity> when 'TEntity : new() and NetForumEntity
override GetAll :
?predicate : Expression<Func<'TEntity, bool>> *
?options : GetAllOptions *
?subEntityFetchPlan : ISubEntityFetchPlan
(* Defaults:
let _predicate = defaultArg predicate null
let _options = defaultArg options GetAllOptions.ExcludeDeleted
let _subEntityFetchPlan = defaultArg subEntityFetchPlan null
*)
-> ICollection<'TEntity> when 'TEntity : new() and NetForumEntity
- predicate ExpressionFuncTEntity, Boolean (Optional)
-
- options GetAllOptions (Optional)
-
- subEntityFetchPlan ISubEntityFetchPlan (Optional)
-
- TEntity
ICollectionTEntity