dashboard-devexpress-dot-dashboardcommon-8fda9d6e.md
Retrieves data from XPO (eXpress Persistent Objects).
Namespace : DevExpress.DashboardCommon
Assembly : DevExpress.Dashboard.v25.2.Core.dll
NuGet Package : DevExpress.Dashboard.Core
public class DashboardXpoDataSource :
XPObjectSource,
IDashboardDataSource,
IDashboardComponent,
IComponent,
IDisposable,
ISupportInitialize,
ISupportPrefix,
IDashboardDataSourceInternal,
IExternalSchemaConsumer,
IFederationDataProvider,
IXpoDataSourceInfo,
ICloneable<DashboardXpoDataSource>
Public Class DashboardXpoDataSource
Inherits XPObjectSource
Implements IDashboardDataSource,
IDashboardComponent,
IComponent,
IDisposable,
ISupportInitialize,
ISupportPrefix,
IDashboardDataSourceInternal,
IExternalSchemaConsumer,
IFederationDataProvider,
IXpoDataSourceInfo,
ICloneable(Of DashboardXpoDataSource)
The DashboardXpoDataSource allows you to obtain data that XPO (eXpress Persistent Object) retrieves from a data source.
Create a DashboardXpoDataSource object and use the ConnectionStringName property to specify the name of the connection string defined in the application configuration file.
Pass the persistent object type to the SetEntityType method.
The code sample below illustrates how to connect to the XPO data source.
using DevExpress.DashboardCommon;
// ...
public static DashboardXpoDataSource CreateXpoDataSource()
{
DashboardXpoDataSource dataSource = new DashboardXpoDataSource()
{
ConnectionStringName = "northwind"
};
dataSource.SetEntityType(typeof(nwind.Customers));
return dataSource;
}
Imports DevExpress.DashboardCommon
' ...
Public Shared Function CreateXpoDataSource() As DashboardXpoDataSource
Dim dataSource As New DashboardXpoDataSource() With {.ConnectionStringName = "northwind"}
dataSource.SetEntityType(GetType(nwind.Customers))
Return dataSource
End Function
Refer to the following topic for information on how bind a Dashboard to an XPO Data Source at Design-Time: XPO Data Source
Object MarshalByRefObject Component DataComponentBase XPObjectSource DashboardXpoDataSource
See Also