RepositoryReadOnlyTGetAllTCustomEntity(GetAllOptions) Method

Retrieves a list of all known entities managed by this repository

Definition

Namespace: Ignition.Framework.Repositories
Assembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
C#
public IReadOnlyCollection<TCustomEntity> GetAll<TCustomEntity>(
	GetAllOptions options = GetAllOptions.ExcludeDeleted
)
where TCustomEntity : new()

Parameters

options  GetAllOptions  (Optional)
Indicates if deleted entities should be included or excluded from the returned list

Type Parameters

TCustomEntity
An overridden entity type, as registered with the CustomEntityRegistrar

Return Value

IReadOnlyCollectionTCustomEntity
The requested list

See Also