ILazyObjectPreloadFromDataSourceTElement Method |
Performs a physical preload of the delay-loaded property values for the specified list of preloadable objects.
Namespace:
Aloe.SystemFrameworks.Domain
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxvoid PreloadFromDataSource<TElement>(
IEnumerable<ILazyObject> list
)
where TElement : ILazyObject
Sub PreloadFromDataSource(Of TElement As ILazyObject) (
list As IEnumerable(Of ILazyObject)
)
generic<typename TElement>
where TElement : ILazyObject
void PreloadFromDataSource(
IEnumerable<ILazyObject^>^ list
)
abstract PreloadFromDataSource :
list : IEnumerable<ILazyObject> -> unit when 'TElement : ILazyObject
Parameters
- list
- Type: System.Collections.GenericIEnumerableILazyObject
The objects list.
Type Parameters
- TElement
-
The actual type of the preloaded element.
Usefull for preloading algorithms, which are implemented in base classes.
See Also