ValueTypeProviderGetAllT Method
Note: This API is now obsolete.
Retrieves ever single sub-entity of type T defined in NetFORUM, narrowed by any configured filters
Namespace: Ignition.Framework.RepositoriesAssembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
[ObsoleteAttribute("Use ConfigurationListProvider.GetEntityBasedList instead. (6.1)")]
public IReadOnlyCollection<T> GetAll<T>()
where T : new(), NetForumEntity
<ObsoleteAttribute("Use ConfigurationListProvider.GetEntityBasedList instead. (6.1)")>
Public Function GetAll(Of T As {New, NetForumEntity}) As IReadOnlyCollection(Of T)
public:
[ObsoleteAttribute(L"Use ConfigurationListProvider.GetEntityBasedList instead. (6.1)")]
generic<typename T>
where T : gcnew(), NetForumEntity
IReadOnlyCollection<T>^ GetAll()
[<ObsoleteAttribute("Use ConfigurationListProvider.GetEntityBasedList instead. (6.1)")>]
member GetAll : unit -> IReadOnlyCollection<'T> when 'T : new() and NetForumEntity
- T
IReadOnlyCollectionTThe requested sub-entities
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.