Skip to main content

SqlDataSourceUIHelper.ConfigureConnection<TModel>(SqlDataSource, IWizardRunnerContext, IConnectionStorageService, Action<IWizardCustomization<TModel>>) Method

OBSOLETE

This overload is obsolete now. Use ConfigureConnection<TModel>(this SqlDataSource sqlDataSource, ConfigureConnectionContext context, Action<IWizardCustomization<TModel>> customizeWizard) instead.

Use an appropriate overload of the SqlDataSourceUIHelper.ConfigureConnection method instead.

Namespace: DevExpress.DataAccess.UI.Sql

Assembly: DevExpress.DataAccess.v23.2.UI.dll

NuGet Package: DevExpress.DataAccess.UI

Declaration

[Obsolete("This overload is obsolete now. Use ConfigureConnection<TModel>(this SqlDataSource sqlDataSource, ConfigureConnectionContext context, Action<IWizardCustomization<TModel>> customizeWizard) instead.")]
public static bool ConfigureConnection<TModel>(
    this SqlDataSource sqlDataSource,
    IWizardRunnerContext wizardRunnerContext,
    IConnectionStorageService connectionStorageService,
    Action<IWizardCustomization<TModel>> callback
)
    where TModel : class, ISqlDataSourceModel, new()

Parameters

Name Type Description
sqlDataSource SqlDataSource

A SqlDataSource object, specifying the database connection.

wizardRunnerContext IWizardRunnerContext

An object implementing the IWizardRunnerContext interface.

connectionStorageService IConnectionStorageService

An object implementing the IConnectionStorageService interface.

callback Action<IWizardCustomization<TModel>>

A Action delegate of an object implementing the IWizardCustomization<TModel> interface.

Type Parameters

Name
TModel

Returns

Type Description
Boolean

true, if the dialog was finished by clicking the Finish button; otherwise, false.

Remarks

The following image illustrates the Connection Editor invoked by calling the ConfigureConnection<TModel> method.

data-access-sql-data-source-ui-helper-connection-editor

The Connection Editor allows an end-user to either specify connection parameters manually, or select an existing connection from the list. If the first option is selected, the next page of the dialog becomes available, prompting an end-user to specify the required connection settings.

data-access-sql-data-source-ui-helper-connection-parameters-editor

See Also