Skip to main content
.NET 6.0+

CollectionDataSource Class

The data source component that loads a collection of business objects via the IObjectSpace.

Namespace: DevExpress.Persistent.Base.ReportsV2

Assembly: DevExpress.Persistent.Base.v23.2.dll

Declaration

[ToolboxTabName("DX.23.2: XAF Data Sources for Reports")]
public class CollectionDataSource :
    DataSourceBase,
    ISortingPropertyDescriptorProvider,
    ITypedList

Remarks

Use this report data source to create an XtraReport compatible with the Reports V2 Module. An example is provided in the Create Predefined Static Reports topic. The CollectionDataSource uses the IObjectSpace.CreateCollection method to load data.

Use CollectionDataSource when you do not need to display a large amount of data, because this component loads objects in their entirety, including fields that are not displayed in the report. If you experience performance issues, use ViewDataSource instead, and explicitly specify the required fields via the ViewDataSource.Properties collection.

Tip

You can use the ViewDataSource component instead of CollectionDataSource. The difference between these components is described in the Data Sources for Reports V2 topic.

Note

This component is available in the DX.23.2: XAF Data Sources for Reports group of the Visual Studio Toolbox.

Inheritance

See Also