ExhibitorRegistrationRepository Class

Provides access to Exhibitor Registrations, which are found in iWeb under Exhibits->Exhibitor Management

Definition

Namespace: Ignition.Exhibits
Assembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
C#
public class ExhibitorRegistrationRepository : Repository<ExhibitorRegistration>, 
	IExhibitorRegistrationRepository, ICachingRepository
Inheritance
Object    RepositoryReadOnly<ExhibitorRegistration>    Repository<ExhibitorRegistration>    ExhibitorRegistrationRepository
Implements
IExhibitorRegistrationRepository, ICachingRepository

Constructors

ExhibitorRegistrationRepositoryInitializes a new instance of the ExhibitorRegistrationRepository class

Properties

ConfigurationListProvider A way to access configuration lists defined in netFORUM
(Inherited from RepositoryReadOnly<T>)
GeneralRepository A general repository available for use in all underlying entity and sub-entity operations
(Inherited from RepositoryReadOnly<T>)
Settings Settings specifying how this repository should behave with regard to both entity and sub-entity management
(Inherited from RepositoryReadOnly<T>)
ValueTypeProvider A ValueTypeProvider available for use in pulling any required value type sub-entities
(Inherited from RepositoryReadOnly<T>)
Obsolete.

Methods

BeforeSave
(Overrides Repository<T>.BeforeSave(T))
ClearAuxiliaryCaches Clears any additional cached data associated with this repository
(Inherited from RepositoryReadOnly<T>)
ClearCache Clears all cached data associated with this repository, for both top-level entities and all sub-entities
(Inherited from RepositoryReadOnly<T>)
Delete Deletes a single entity from netFORUM's database
(Inherited from Repository<T>)
Find(Expression<Func<T, Boolean>>, GetAllOptions) Retrieves a list of all entities matching a given set of search criteria
(Inherited from RepositoryReadOnly<T>)
Find(Expression<Func<T, Boolean>>, Expression<Func<T, IEnumerable<NetForumEntity>>>[]) Retrieves a list of all entities matching a given set of search criteria
(Inherited from RepositoryReadOnly<T>)
GetAll(Expression<Func<T, IEnumerable<NetForumEntity>>>[]) Retrieves a list of all known entities managed by this repository
(Inherited from RepositoryReadOnly<T>)
GetAll(GetAllOptions) Retrieves a list of all known entities managed by this repository
(Inherited from RepositoryReadOnly<T>)
GetById(NetForumId) Retrieves a single entity by id
(Inherited from RepositoryReadOnly<T>)
InitializeSubEntities Populates any of the sub-entities of the passed top-level entity that were not already populated by Ignition's auto-population mechanisms.
(Inherited from RepositoryReadOnly<T>)
LookupRegistrationsByExhibition Returns all exhibitor registrations for a given exhibition
LookupRegistrationsByOrganizationAndExhibition Returns all exhibitor registrations for a given organization and exhibition
PrimeCache Retrieves and caches the set of all known entities managed by this repository, in order to increase the performance of future GetAll(GetAllOptions) and GetById(NetForumId) requests. Performance of Find(Expression<Func<T, Boolean>>, GetAllOptions) requests will not be improved.
(Inherited from RepositoryReadOnly<T>)
RemoveFromCache Removes the entity with the specified id from the top-level entity cache if caching is enabled
(Inherited from RepositoryReadOnly<T>)
Save Saves a single entity to netFORUM
(Inherited from Repository<T>)

See Also