ChooseEFDataMemberPageView.Initialize(IEnumerable<DBTable>, IEnumerable<DBStoredProcedure>, String) Method
Initializes a wizard page with the list of available data members.
Namespace: DevExpress.DataAccess.UI.Wizard.Views
Assembly: DevExpress.DataAccess.v24.1.UI.dll
NuGet Package: DevExpress.DataAccess.UI
Declaration
public 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