Load all entities of the given type EntityType. You can choose which the fields to load. Warning: all fields that are not loaded must be nullable.

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

Syntax

C#
List<EntityType> GetEntitiesFields<EntityType>(
	IEnumerable<string> fields
)
where EntityType : new(), Entity, IEntity, IDataWrapper
Visual Basic
Function GetEntitiesFields(Of EntityType As {New, Entity, IEntity, IDataWrapper}) ( _
	fields As IEnumerable(Of String) _
) As List(Of EntityType)

Parameters

fields
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'String>)>)>
The sequence of all fields to load. The empty sequence loads all fields.

Type Parameters

EntityType
Type of Entity to load

Return Value

List of EntityType loaded by the queries

See Also