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.6.0.0 (5.6.19.0117)
Syntax public virtual List<IEntityCore> GetAll(
Type typeOfEntity
)
Public Overridable Function GetAll (
typeOfEntity As Type
) As List(Of IEntityCore)
Parameters
- typeOfEntity
- Type: SystemType
The type of the entity for which the objects should be returned.
Return Value
Type:
ListIEntityCoreList with the requested data
See Also