Skip to main content
A newer version of this page is available. .

How to: Bind the GridControl to XPO

  • 4 minutes to read

This example shows how to provide the GridControl with data using the eXpress Persistent Objects (XPO).

  1. Create a new persistent class representing a data object ProductDataObject (see the PersistentObject.cs file).

  2. Define a database to store data.

private void InitDAL() {
    XpoDefault.DataLayer = XpoDefault.GetDataLayer(
        AccessConnectionProvider.GetConnectionString(@"c:\database\product.mdb"),
        AutoCreateOption.DatabaseAndSchema
    );
}
  1. Bind the GridControl to a new XPCollection object.

Note

A complete sample project is available at https://github.com/DevExpress-Examples/how-to-display-data-via-xpo-e3283.

Imports System.Windows
Imports DevExpress.Xpo
Imports DevExpress.Xpo.DB

Namespace DXGrid_BindingToXPODataSource
    ''' <summary>
    ''' Interaction logic for MainWindow.xaml
    ''' </summary>
    Partial Public Class MainWindow
        Inherits Window

        Public Sub New()
            InitDAL()
            GenerateData()
            InitializeComponent()
            grid.ItemsSource = New XPCollection(Of ProductDataObject)()
        End Sub

'        
'         * Creates a new DAL with the specified settings and initializes the XpoDefault.DataLayer property.
'         * As a result, all the units of work (or sessions) will by default access the "Product" database
'         * using the specified path.
'         
        Private Sub InitDAL()
            XpoDefault.DataLayer = XpoDefault.GetDataLayer(AccessConnectionProvider.GetConnectionString("c:\database\product.mdb"), AutoCreateOption.DatabaseAndSchema)
        End Sub

        ' Generates sample data if the "Product" database is empty.
        Private Sub GenerateData()
            If Session.DefaultSession.FindObject(Of ProductDataObject)(Nothing) IsNot Nothing Then
                Return
            End If
            Using uow As New UnitOfWork()
                Dim pdo1 As New ProductDataObject(uow) With {.ProductName = "Product A", .UnitPrice = 99}
                Dim pdo2 As New ProductDataObject(uow) With {.ProductName = "Product B", .UnitPrice = 199}
                uow.CommitChanges()
            End Using
        End Sub
    End Class
End Namespace