Skip to main content
.NET 8.0+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

XafApplication.CreatePropertyCollectionSource(IObjectSpace, Type, Object, IMemberInfo, String, Boolean, CollectionSourceMode) Method

Creates a Collection Source for a nested List View that displays a collection property.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public PropertyCollectionSource CreatePropertyCollectionSource(
    IObjectSpace objectSpace,
    Type masterObjectType,
    object masterObject,
    IMemberInfo memberInfo,
    string listViewId,
    bool isServerMode,
    CollectionSourceMode mode
)

#Parameters

Name Type Description
objectSpace IObjectSpace

An IObjectSpace object representing the Object Space used to retrieve the object for the created Collection Source.

masterObjectType Type

The type of the object whose collection property is about to be displayed.

masterObject Object

An object whose collection property is about to be displayed.

memberInfo IMemberInfo

An IMemberInfo object that defines the collection property to be displayed.

listViewId String

A string representing an identifier of the List View for which a Collection Source is created.

isServerMode Boolean

true, if all the data processing takes place on the database server side; false, if all the data processing takes place on the client side. This value is used to initialize the CollectionSourceBase.Mode property of the created Collection Source.

mode CollectionSourceMode

A CollectionSourceMode enumeration value specifying the Collection Source’s mode of operation. This value is used to initialize the CollectionSourceBase.Mode property of the created Collection Source.

#Returns

Type Description
PropertyCollectionSource

A PropertyCollectionSource object representing a Collection Source for a nested List View.

See Also