SqlDataSourceUIHelper.EditQuery<TModel>(SqlQuery, EditQueryContext, Action<IWizardCustomization<TModel>>) Method
In This Article
Invokes the Query Builder to edit the specified query.
Namespace: DevExpress.DataAccess.UI.Sql
Assembly: DevExpress.DataAccess.v24.2.UI.dll
NuGet Package: DevExpress.DataAccess.UI
#Declaration
public static bool EditQuery<TModel>(
this SqlQuery query,
EditQueryContext context,
Action<IWizardCustomization<TModel>> customizeWizard
)
where TModel : class, ISqlDataSourceModel, new()
#Parameters
Name | Type | Description |
---|---|---|
query | Sql |
A Sql |
context | Edit |
An Edit |
customize |
Action<IWizard |
A Action delegate of an object implementing the IWizard |
#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 Query Builder.
See Also