Skip to main content
All docs
V25.1
  • .NET 8.0+

    ReportModuleOptions.ReportStoreMode Property

    Specifies the format used to store reports in the ReportsStorage.

    Namespace: DevExpress.ExpressApp.ReportsV2

    Assembly: DevExpress.ExpressApp.ReportsV2.v25.1.dll

    Declaration

    public ReportStoreModes ReportStoreMode { get; set; }

    Property Value

    Type Description
    ReportStoreModes

    A ReportStoreModes enumeration value that specifies the format used to store reports.

    Remarks

    The following example demonstrates how to specify this property:

    File: MySolution.Blazor.Server\Startup.cs.

    using DevExpress.ExpressApp.ApplicationBuilder;
    using DevExpress.ExpressApp.Blazor.ApplicationBuilder;
    using DevExpress.Persistent.BaseImpl;
    // ...
    public class Startup {
       // ...
        public void ConfigureServices(IServiceCollection services) {
            // ...
            services.AddXaf(Configuration, builder => {
                builder.UseApplication<MySolutionBlazorApplication>();
                builder.Modules
                    // ...
                    .AddReports(options => {
                        options.ReportStoreMode = DevExpress.ExpressApp.ReportsV2.ReportStoreModes.XML;
                    })
                // ...
            });
            // ...
        }
    }
    
    See Also