Skip to main content

IChooseEFDataMemberPageView.Initialize(IEnumerable<DBTable>, IEnumerable<DBStoredProcedure>, String) Method

If implemented, initializes a wizard page with the list of available data members.

Namespace: DevExpress.DataAccess.Wizard.Views

Assembly: DevExpress.DataAccess.v23.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap

Declaration

void Initialize(
    IEnumerable<DBTable> tables,
    IEnumerable<DBStoredProcedure> procedures,
    string dataMember
)

Parameters

Name Type Description
tables IEnumerable<DBTable>

A collection of the DBTable objects specifying tables from an Entity Framework data source.

procedures IEnumerable<DBStoredProcedure>

A collection of the DBStoredProcedure objects specifying stored procedures from an Entity Framework data source.

dataMember String

A string that specifies the name of the selected data member.

See Also