ValueTypeProviderGetAllT Method

Note: This API is now obsolete.
Retrieves ever single sub-entity of type T defined in NetFORUM, narrowed by any configured filters

Definition

Namespace: Ignition.Framework.Repositories
Assembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
C#
[ObsoleteAttribute("Use ConfigurationListProvider.GetEntityBasedList instead. (6.1)")]
public IReadOnlyCollection<T> GetAll<T>()
where T : new(), NetForumEntity

Type Parameters

T

Return Value

IReadOnlyCollectionT
The requested sub-entities

Remarks

This method is most often used when the sub-entities in question are defined as a fixed list in NetFORUM (ex. AddressType, PhoneType, AbstractStatus, etc) and you want to get a list of the possible options which will be exposed on your custom repository for eventual display to the end user. If caching is enabled, cached sub-entities will be used if available. A retrieval strategy of DoNoLoad will not prevent this method from retrieving the requested sub-entities.

See Also