Skip to main content
.NET 6.0+

SerializableObjectLayer.LoadDelayedProperties(XPDictionaryStub, XPObjectStubCollection, String) 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 SerializableObjectLayerResult<object[]> LoadDelayedProperties(
    XPDictionaryStub dictionary,
    XPObjectStubCollection objects,
    string property
)

Parameters

Name Type Description
dictionary XPDictionaryStub

An XPDictionaryStub object that is a metadata information provider.

objects XPObjectStubCollection

An XPObjectStubCollection object which contains information on persistent objects containing the delayed property specified by the property.

property String

A String value specifying a delayed property whose values are loaded.

Returns

Type Description
DevExpress.Xpo.SerializableObjectLayerResult<Object[]>

A SerializableObjectLayerResult instance that exposes an array of loaded property values corresponding to the objects collection elements.

See Also