DevExpress.AspNetCore.Reporting
26.1.5-pre-26235
Prefix Reserved
dotnet add package DevExpress.AspNetCore.Reporting --version 26.1.5-pre-26235
NuGet\Install-Package DevExpress.AspNetCore.Reporting -Version 26.1.5-pre-26235
<PackageReference Include="DevExpress.AspNetCore.Reporting" Version="26.1.5-pre-26235" />
<PackageVersion Include="DevExpress.AspNetCore.Reporting" Version="26.1.5-pre-26235" />
<PackageReference Include="DevExpress.AspNetCore.Reporting" />
paket add DevExpress.AspNetCore.Reporting --version 26.1.5-pre-26235
#r "nuget: DevExpress.AspNetCore.Reporting, 26.1.5-pre-26235"
#:package DevExpress.AspNetCore.Reporting@26.1.5-pre-26235
#addin nuget:?package=DevExpress.AspNetCore.Reporting&version=26.1.5-pre-26235&prerelease
#tool nuget:?package=DevExpress.AspNetCore.Reporting&version=26.1.5-pre-26235&prerelease
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
Install this package and the client-side libraries. Refer to the following section for the complete list: Manage Packages and Libraries.
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}'."); } }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();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) { } }Reference the
DevExpress.AspNetCorenamespace in _ViewImports.cshtml:@* _ViewImports.cshtml *@ @using DevExpress.AspNetCoreIn the _Layout.cshtml
headsection, 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>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:
- DevExpress Reporting Subscription
- DevExpress ASP.NET Subscription
- DevExpress DXperience Subscription
- DevExpress Universal Subscription
See DevExpress Subscriptions & Licensing for subscription comparison tables, purchasing FAQ, and licensing information.
Related Components/Packages
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 | Versions 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. |
-
net8.0
- DevExpress.AspNetCore.Common (= 26.1.5-pre-26235)
- DevExpress.AspNetCore.Core (= 26.1.5-pre-26235)
- DevExpress.Data (= 26.1.5-pre-26235)
- DevExpress.DataAccess (= 26.1.5-pre-26235)
- DevExpress.Printing.Core (= 26.1.5-pre-26235)
- DevExpress.Reporting.Core (= 26.1.5-pre-26235)
- DevExpress.Web.Reporting.Common (= 26.1.5-pre-26235)
- DevExpress.Web.Reporting.Common.Services (= 26.1.5-pre-26235)
- DevExpress.Web.Resources (= 26.1.5-pre-26235)
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 |