Load all entities of the given type EntityType. Only single value fields are loaded. Multivalue or temporal fields are not loaded. For loading of multivalue or temporal fields please refer to LoadEntityFields or LoadEntitiesFields methods.

Namespace:  Aspectize.Core
Assembly:  AspectizeDAL (in AspectizeDAL.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
List<EntityType> GetEntities<EntityType>()
where EntityType : new(), Entity
Visual Basic (Declaration)
Function GetEntities(Of EntityType As {New, Entity}) As List(Of EntityType)

Type Parameters

EntityType
Type of Entity to load

Return Value

List of EntityType loaded by the query

See Also