XPObjectSource Class
Enables binding reports to XPO persistent class’ data.
Namespace: DevExpress.Xpo
Assembly: DevExpress.DataAccess.v24.1.dll
NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap
NuGet Package: DevExpress.DataAccess
Declaration
Remarks
XPObjectSource can be used at design time via the Report Wizard:
You can also initialize and enable XPObjectSource in code. Create an XPObjectSource instance. Initialize the XPObjectSource.ConnectionStringName property and pass the persistent object type to the XPObjectSource.SetEntityType method. Then, pass the XPObjectSource instance to the XtraReportBase.DataSource property of your XtraReport.
using DevExpress.Xpo;
using DevExpress.Xpo.Metadata;
using DevExpress.XtraReports;
// ...
XPObjectSource dataSource = new XPObjectSource();
dataSource.ConnectionStringName = "ConnectionString";
dataSource.SetEntityType(typeof(Product));
using(XtraReport2 report = new XtraReport2()) {
report.DataSource = dataSource;
// ...
// Preview the report or do something else.
// ..
}
Tip
The complete step-by-step examples are provided in the Reporting documentation: