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

SqlDataSourceUIHelper.EditQuery<TModel>(SqlQuery, UserLookAndFeel, IWin32Window, IDBSchemaProvider, IParameterService, Action<IWizardCustomization<TModel>>, IServiceProvider) Method

OBSOLETE

This overload is obsolete now. Use EditQuery<TModel>(this SqlQuery query, EditQueryContext context, Action<IWizardCustomization<TModel>> customizeWizard) instead.

Invokes the Query Builder to edit the specified query.

Namespace: DevExpress.DataAccess.UI.Sql

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

Declaration

[Obsolete("This overload is obsolete now. Use EditQuery<TModel>(this SqlQuery query, EditQueryContext context, Action<IWizardCustomization<TModel>> customizeWizard) instead.")]
public static bool EditQuery<TModel>(
    this SqlQuery query,
    UserLookAndFeel lookAndFeel,
    IWin32Window owner,
    IDBSchemaProvider dbSchemaProvider,
    IParameterService parameterService,
    Action<IWizardCustomization<TModel>> callback,
    IServiceProvider propertyGridServices
)
    where TModel : class, ISqlDataSourceModel, new()

Parameters

Name Type Description
query SqlQuery

A SqlQuery to be edited.

lookAndFeel UserLookAndFeel

A UserLookAndFeel object, specifying the application’s look and feel settings.

owner IWin32Window

An object implementing the IWin32Window interface that is the owner of the current dialog window.

dbSchemaProvider DevExpress.DataAccess.Sql.IDBSchemaProvider

An object implementing the IDBSchemaProvider interface.

parameterService IParameterService

An object implementing the IParameterService interface.

callback Action<IWizardCustomization<TModel>>

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

propertyGridServices IServiceProvider

An object implementing the System.IServiceProvider interface that provides access to services managing property grid functionality.

Type Parameters

Name
TModel

Returns

Type Description
Boolean

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

Remarks

The following image illustrates the Query Builder.

data-access-sql-data-source-ui-helper-query-designer

See Also