RepositoryReadOnlyTGetAllTCustomEntity(GetAllOptions) Method
Retrieves a list of all known entities managed by this repository
Namespace: Ignition.Framework.RepositoriesAssembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
public IReadOnlyCollection<TCustomEntity> GetAll<TCustomEntity>(
GetAllOptions options = GetAllOptions.ExcludeDeleted
)
where TCustomEntity : new()
Public Function GetAll(Of TCustomEntity As New) (
Optional options As GetAllOptions = GetAllOptions.ExcludeDeleted
) As IReadOnlyCollection(Of TCustomEntity)
public:
generic<typename TCustomEntity>
where TCustomEntity : gcnew()
virtual IReadOnlyCollection<TCustomEntity>^ GetAll(
GetAllOptions options = GetAllOptions::ExcludeDeleted
) sealed
abstract GetAll :
?options : GetAllOptions
(* Defaults:
let _options = defaultArg options GetAllOptions.ExcludeDeleted
*)
-> IReadOnlyCollection<'TCustomEntity> when 'TCustomEntity : new()
override GetAll :
?options : GetAllOptions
(* Defaults:
let _options = defaultArg options GetAllOptions.ExcludeDeleted
*)
-> IReadOnlyCollection<'TCustomEntity> when 'TCustomEntity : new()
- options GetAllOptions (Optional)
- Indicates if deleted entities should be included or excluded from the returned list
- TCustomEntity
- An overridden entity type, as registered with the CustomEntityRegistrar
IReadOnlyCollectionTCustomEntityThe requested list