ValueTypeProvider.GetById<T> Method

Note: This API is now obsolete.
Retrieves a single sub-entity of type T, returning null if the id is null.

Definition

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

Parameters

id  NetForumId
The id if the sub-entity to retrieve or null

Type Parameters

T

Return Value

T
The requested sub-entity if id was not null; otherwise null

See Also