DevExpress.AspNetCore.Reporting 26.1.5-pre-26235

Prefix Reserved
This is a prerelease version of DevExpress.AspNetCore.Reporting.
dotnet add package DevExpress.AspNetCore.Reporting --version 26.1.5-pre-26235
                    
NuGet\Install-Package DevExpress.AspNetCore.Reporting -Version 26.1.5-pre-26235
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DevExpress.AspNetCore.Reporting" Version="26.1.5-pre-26235" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DevExpress.AspNetCore.Reporting" Version="26.1.5-pre-26235" />
                    
Directory.Packages.props
<PackageReference Include="DevExpress.AspNetCore.Reporting" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DevExpress.AspNetCore.Reporting --version 26.1.5-pre-26235
                    
#r "nuget: DevExpress.AspNetCore.Reporting, 26.1.5-pre-26235"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package DevExpress.AspNetCore.Reporting@26.1.5-pre-26235
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DevExpress.AspNetCore.Reporting&version=26.1.5-pre-26235&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=DevExpress.AspNetCore.Reporting&version=26.1.5-pre-26235&prerelease
                    
Install as a Cake Tool

DevExpress Web Reporting Components for ASP.NET Core

This package contains the server-side services and MVC controller base classes that handle DevExpress Web Reporting requests in ASP.NET Core applications for the Document Viewer, End-User Report Designer, Query Builder, and Standalone Report Parameters Panel.

The UI controls ship separately as npm packages, so the front end can be an MVC or Razor Pages view, or an Angular, React, or Vue app. The packages you install depend on the client framework you use.

Supported Components

  • Document Viewer: Displays an interactive document preview generated from a DevExpress Report. The Document Viewer allows users to preview data, change report parameters, print, and export the resulting document.
  • End-User Report Designer: Allows users to create and modify reports using a drag-and-drop interface. Supports various data source types. Includes a fully functional Document Viewer to preview and export reports.
  • Query Builder: A graphical tool that allows you to interactively build queries based on tables and views in an SQL Data Source, preview SQL statements, and view the results.
  • Standalone Report Parameters Panel: A panel with report parameter editors. Use this component to submit report parameter values, programmatically create a report based on the specified values, and then export or email it without displaying a preview to users.

Example: Add a Document Viewer and End-User Report Designer to an ASP.NET Core MVC App

  1. Install this package and the client-side libraries. Refer to the following section for the complete list: Manage Packages and Libraries.

  2. Add a report to the project and implement a report name resolution service that translates a report name to a report instance:

    using DevExpress.XtraReports.Services;
    using DevExpress.XtraReports.UI;
    
    // Maps a report name to a report instance.
    public static class ReportsFactory {
        public static Dictionary<string, Func<XtraReport>> Reports = new() {
            ["TestReport"] = () => new TestReport()
        };
    }
    
    public class CustomReportProvider : IReportProvider {
        public XtraReport GetReport(string id, ReportProviderContext context) {
            if (ReportsFactory.Reports.TryGetValue(id, out var report))
                return report();
            throw new DevExpress.XtraReports.Web.ClientControls.FaultException($"Could not find report '{id}'.");
        }
    }
    
  3. Configure services in Program.cs:

    using DevExpress.AspNetCore;
    using DevExpress.AspNetCore.Reporting;
    using DevExpress.XtraReports.Services;
    
    var builder = WebApplication.CreateBuilder(args);
    builder.Services.AddControllersWithViews();
    
    // Add DevExpress Reporting services.
    builder.Services.AddDevExpressControls();
    builder.Services.ConfigureReportingServices(configurator => {
        configurator.ConfigureWebDocumentViewer(viewerConfigurator => {
            // Cache generated documents between requests: reduces memory use and
            // supports web farms and app restarts.
            viewerConfigurator.UseCachedReportSourceBuilder();
        });
    });
    // Resolve reports by name. Register after AddDevExpressControls.
    builder.Services.AddScoped<IReportProvider, CustomReportProvider>();
    
    var app = builder.Build();
    app.UseDevExpressControls();
    // ...
    app.Run();
    
  4. Implement a controller for each component. The Document Viewer requires a Document Viewer controller; the End-User Report Designer requires all three:

    using DevExpress.AspNetCore.Reporting.QueryBuilder;
    using DevExpress.AspNetCore.Reporting.QueryBuilder.Native.Services;
    using DevExpress.AspNetCore.Reporting.ReportDesigner;
    using DevExpress.AspNetCore.Reporting.ReportDesigner.Native.Services;
    using DevExpress.AspNetCore.Reporting.WebDocumentViewer;
    using DevExpress.AspNetCore.Reporting.WebDocumentViewer.Native.Services;
    
    public class CustomWebDocumentViewerController : WebDocumentViewerController {
        public CustomWebDocumentViewerController(IWebDocumentViewerMvcControllerService controllerService)
            : base(controllerService) { }
    }
    
    public class CustomReportDesignerController : ReportDesignerController {
        public CustomReportDesignerController(IReportDesignerMvcControllerService controllerService)
            : base(controllerService) { }
    }
    
    public class CustomQueryBuilderController : QueryBuilderController {
        public CustomQueryBuilderController(IQueryBuilderMvcControllerService controllerService)
            : base(controllerService) { }
    }
    
  5. Reference the DevExpress.AspNetCore namespace in _ViewImports.cshtml:

    @* _ViewImports.cshtml *@
    @using DevExpress.AspNetCore
    
  6. In the _Layout.cshtml head section, attach the shared third-party bundle. Step 1 builds this bundle, along with the per-component bundles used below, from the installed client-side libraries through bundleconfig.json:

    @* _Layout.cshtml *@
    <link rel="stylesheet" href="~/css/thirdparty.bundle.css" />
    <script src="~/js/thirdparty.bundle.js"></script>
    
  7. Add a component to a view together with its client-side bundle. Bind the Document Viewer and Report Designer by report name (resolved by the service implemented in step 2):

    @* Document Viewer *@
    <link rel="stylesheet" href="~/css/viewer.part.bundle.css" />
    <script src="~/js/viewer.part.bundle.js"></script>
    
    @Html.DevExpress().WebDocumentViewer("DocumentViewer").Height("1000px").Bind("TestReport")
    
    @* End-User Report Designer *@
    <link rel="stylesheet" href="~/css/designer.part.bundle.css" />
    <script src="~/js/designer.part.bundle.js"></script>
    
    @(Html.DevExpress().ReportDesigner("reportDesigner").Height("1000px").Bind("TestReport"))
    

The End-User Report Designer also requires a report storage so users can open and save report definitions. Refer to the following help topic for the full CustomReportStorageWebExtension implementation: Add a Report Storage.

For complete walkthroughs, refer to the following get-started tutorials:

Evaluation Period, Pricing Options, and Licensing Terms

Whether you own a license or want to start a 30-day evaluation, download and register your DevExpress license key. To obtain your key, sign in to the DevExpress Download Manager with an existing DevExpress.com account or create a free account. For key registration instructions, see License Key for DevExpress Products.

If you purchase a license after evaluating a product, re-register your updated DevExpress license key to remove evaluation warnings and messages.

This package is included in the following commercial subscriptions:

See DevExpress Subscriptions & Licensing for subscription comparison tables, purchasing FAQ, and licensing information.

DevExpress.AspNetCore.Reporting.Azure — Microsoft Azure integration. Cache generated report documents in Azure Storage for scalable, stateless deployments on Microsoft Azure.

dotnet add package DevExpress.AspNetCore.Reporting.Azure

DevExpress.AIIntegration.AspNetCore.Reporting — AI-powered Summarize, Translate, Prompt-to-Report, Prompt-to-Expression, Localization, and Test Data extensions for the Document Viewer and Report Designer.

dotnet add package DevExpress.AIIntegration.AspNetCore.Reporting

Demos

Documentation

Software Bill of Materials (SBOM)

To access SBOM files for DevExpress packages, please refer to the following article: Software Bill of Materials (SBOM) for DevExpress .NET assemblies/NuGet packages, JavaScript, VCL and other redistributable artifacts.

See Also: Information Security | Security - What You Need to Know

Useful Online Resources

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (11)

Showing the top 5 NuGet packages that depend on DevExpress.AspNetCore.Reporting:

Package Downloads
DevExpress.ExpressApp.ReportsV2.Blazor

Target Platform/Framework: Web, Mobile DevExpress Product Libraries Used: XAF (Cross-Platform .NET App UI & Web API) (https://www.devexpress.com/xaf) Available in the following DevExpress Subscription(s): Universal SBOM: https://sbom.devexpress.com/nuget/DevExpress.ExpressApp.ReportsV2.Blazor/26.1.5-pre-26235

DevExpress.AspNetCore.Reporting.Azure

Target Platform/Framework: Web DevExpress Product Libraries Used: .NET Reporting (https://www.devexpress.com/subscriptions/reporting) Available in the following DevExpress Subscription(s): Universal, DXperience, ASP.NET & Blazor (includes DevExtreme), Reporting SBOM: https://sbom.devexpress.com/nuget/DevExpress.AspNetCore.Reporting.Azure/26.1.5-pre-26235

Corprio.AspNetCore.XtraReportSite

Extended suppport on Corprio.AspNetCore.Site for using DevExpress XtraReports in ASP.NET Core web applications

IdealogWebPlatform

Package Description

ItEnterprise.Reporting.Base

Package Description

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on DevExpress.AspNetCore.Reporting:

Repository Stars
abpframework/abp-samples
Sample solutions built with the ABP Framework
DevExpress/Blazor
[Archived] This repository has been archived and will no longer receive content updates.
Version Downloads Last Updated
26.1.5-pre-26235 116 8/26/2026
26.1.5-pre-26227 417 8/18/2026
26.1.4 7,956 8/7/2026
26.1.4-pre-26200 681 7/23/2026
26.1.4-pre-26190 549 7/14/2026
26.1.4-pre-26179 479 7/2/2026
26.1.3 41,017 6/18/2026
25.2.9 1,610 8/3/2026
25.2.8 23,316 6/10/2026
25.2.7 55,983 5/6/2026
25.2.6 44,415 4/7/2026
25.2.5 48,894 3/2/2026
25.2.4 33,330 2/3/2026
25.1.13 1,912 7/31/2026
25.1.12 5,076 6/10/2026
25.1.11 2,395 5/5/2026
25.1.10 11,005 4/6/2026
25.1.9 38,555 3/2/2026
25.1.8 8,758 1/16/2026
Loading failed