Skip to main content
.NET 6.0+

SerializableObjectLayerClient.LoadDelayedProperties(Session, IList, XPMemberInfo) Method

Performs object layer specific operations that are required to load 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

public 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 ObjectDictionary of loaded property values that correspond to the objects list elements.

See Also