Click or drag to resize
Context.GetAll Method
Returns a readonly arraylist with all the objects of the type passed in which are currently stored in the internal object cache. No new entities are returned. If the type is not found, an empty array list is returned.

Namespace: SD.LLBLGen.Pro.ORMSupportClasses
Assembly: SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.0.0.0 (5.0.0)
Syntax
public virtual List<IEntityCore> GetAll(
	Type typeOfEntity
)

Parameters

typeOfEntity
Type: System.Type
The type of the entity for which the objects should be returned.

Return Value

Type: List<IEntityCore>
List with the requested data
See Also