Skip to main content

DefaultReportDesignerContainer.RegisterDataSourceWizardDBSchemaProviderExFactory<T>(Boolean) Method

Registers a custom database schema provider factory that allows you to implement schema filtering and multitenancy.

Namespace: DevExpress.XtraReports.Web.ReportDesigner

Assembly: DevExpress.XtraReports.v24.1.Web.dll

NuGet Package: DevExpress.Web.Reporting.Common

Declaration

public static void RegisterDataSourceWizardDBSchemaProviderExFactory<T>(
    bool overrideReportPreviewProvider
)
    where T : IDataSourceWizardDBSchemaProviderExFactory

Parameters

Name Type Description
overrideReportPreviewProvider Boolean

True to use the registered schema for the Report Preview; otherwise, false.

Type Parameters

Name
T

Remarks

The custom database schema provider allows you to restrict access to tables, views, stored procedures, and data fields in the query builder. Reducing the number of objects in the schema accelerates rebuilding the database schema before displaying data.

Review the following help topic for more information and code examples: Use a Custom Database Schema.

See Also