Skip to main content
All docs
V25.1
  • BuilderFactoryExtensions.QueryBuilder(BuilderFactory) Method

    The BuilderFactory extension method that creates the HTML content builder for the Web Query Builder.

    Namespace: DevExpress.AspNetCore

    Assembly: DevExpress.AspNetCore.Reporting.v25.1.dll

    NuGet Package: DevExpress.AspNetCore.Reporting

    Declaration

    public static QueryBuilderHtmlContentBuilder QueryBuilder(
        this BuilderFactory factory
    )

    Parameters

    Name Type Description
    factory BuilderFactory

    The BuilderFactory instance that this method extends.

    Returns

    Type Description
    QueryBuilderHtmlContentBuilder

    The object that builds the Web Query Builder.

    Remarks

    Use this extension method to create the HTML content builder for the Web Query Builder and generate an element on a page.

    @(Html.DevExpress()
        .QueryBuilder()
        .Name("webQueryBuilder")
        .Height("400px")
        .Bind(Model))
    
    See Also