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

SqlDataSourceUIHelper.EditQuery(SqlQuery, UserLookAndFeel, IWin32Window, IDBSchemaProvider, IRepositoryItemsProvider) Method

OBSOLETE

This overload is obsolete now. Use EditQuery instead.

Invokes the Query Builder to edit the specified query.

Namespace: DevExpress.DataAccess.UI.Sql

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

Declaration

[Obsolete("This overload is obsolete now. Use EditQuery(this SqlQuery query, EditQueryContext context) instead.")]
public static bool EditQuery(
    this SqlQuery query,
    UserLookAndFeel lookAndFeel,
    IWin32Window owner,
    IDBSchemaProvider dbSchemaProvider,
    IRepositoryItemsProvider repositoryItemsProvider
)

Parameters

Name Type Description
query SqlQuery

A SqlQuery object.

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 IDBSchemaProvider

An object implementing the IDBSchemaProvider interface.

repositoryItemsProvider IRepositoryItemsProvider

An object implementing the IRepositoryItemsProvider interface that provides repository items for editing query parameters.

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