RepositoryReadOnlyTGetAllTCustomEntity(ExpressionFuncTCustomEntity, IEnumerableNetForumEntity) 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>(
	params Expression<Func<TCustomEntity, IEnumerable<NetForumEntity>>>[] collectionsToPreload
)
where TCustomEntity : new()

Parameters

collectionsToPreload  ExpressionFuncTCustomEntity, IEnumerableNetForumEntity
A set of NetForumSubEntityCollectionAttribute annotated collections which should be preloaded, overriding any defaults or FetchStrategyHintAttribute on the collection property itself.

Type Parameters

TCustomEntity
An overridden entity type, as registered with the CustomEntityRegistrar

Return Value

IReadOnlyCollectionTCustomEntity
The requested list

See Also