Skip to main content
.NET 6.0+

IObjectLayerEx.LoadDelayedProperties(Session, IList, XPMemberInfo) Method

When implemented by a class, loads data to a specific property marked for delayed loading in specified objects.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

ObjectDictionary<object> LoadDelayedProperties(
    Session session,
    IList objects,
    XPMemberInfo property
)

Parameters

Name Type Description
session Session

A Session that is used to retrieve data for delayed properties.

objects IList

A list of persistent objects containing the delayed property specified by the property.

property XPMemberInfo

An XPMemberInfo object specifying a delayed property whose values are loaded.

Returns

Type Description
DevExpress.Xpo.Helpers.ObjectDictionary<Object>

An DevExpress.Xpo.Helpers.ObjectDictionary`1<Object,> of loaded property values that correspond to the objects list elements.

See Also