Corprio.AspNetCore.XtraReportSite
2.0.29.54
See the version list below for details.
dotnet add package Corprio.AspNetCore.XtraReportSite --version 2.0.29.54
NuGet\Install-Package Corprio.AspNetCore.XtraReportSite -Version 2.0.29.54
<PackageReference Include="Corprio.AspNetCore.XtraReportSite" Version="2.0.29.54" />
paket add Corprio.AspNetCore.XtraReportSite --version 2.0.29.54
#r "nuget: Corprio.AspNetCore.XtraReportSite, 2.0.29.54"
// Install Corprio.AspNetCore.XtraReportSite as a Cake Addin #addin nuget:?package=Corprio.AspNetCore.XtraReportSite&version=2.0.29.54 // Install Corprio.AspNetCore.XtraReportSite as a Cake Tool #tool nuget:?package=Corprio.AspNetCore.XtraReportSite&version=2.0.29.54
Corprio.AspNetCore.XtraReportSite
What is Corprio.AspNetCore.XtraReportSite for?
The Corprio.AspNetCore.XtraReportSite is the base library for develpers to build a web applicaiton working with Corprio using ASP.NET Core and need to execute reports in the web application. If your application does not need to execute reports, then you can use Corprio.AspNetCore.Site instead.
Technology
The application is developed using ASP.NET Core 8, DevExtreme and XtraReports.
To start
Follow the steps below to start building your web applicaiton with Corprio.
Prepare the development environment
Download and install the latest version of Visual Studio from Microsoft. You will need to select components for building ASP.NET Core applications.
Clone Corprio.Internal solution
Your web application needs to work the Corprio API. Instead of directly calling the online API, you can clone the Corprio.Internal repository onto your development machine so that you can have the Corprio API server running in your development machine.
Start new web application
- Launch Visual Studio
- Create a new project
- Select the ASP.NET Core Web App (Model-View-Controller) template using C#
- Right click on the project and select Manage NuGet Packages
- Search for Corprio.AspNetCore.XtraReportSite and install the package
- Create a class to get data for your reports running in this application. For example
/// <summary>
/// Service for getting data for reports
/// </summary>
public class ReportDataService : BaseReportDataService
{
/// <summary>
/// Constructor
/// </summary>
/// <param name="httpContextAccessor">HttpContextAccessor for getting organization ID from HttpContext</param>
/// <param name="corprio">Corprio client for getting data from server</param>
public ReportDataService(IHttpContextAccessor httpContextAccessor, APIClient corprio, IHttpClientFactory httpClientFactory) : base(httpContextAccessor, corprio, httpClientFactory)
{
}
public override IEnumerable<Type> GetAvailableTypes(string context)
{
return new Type[] {
//put the data types of your report data here, e.g. MySalesReportData
};
}
public override System.Collections.IEnumerable GetReportData(Type dataType, Guid organizationID, Dictionary<string, object> parameters)
{
//add code to return data for each of your report data type
throw new NotSupportedException($"DataType {dataType} is not supported");
}
public override IEnumerable<Corprio.DataModel.Report.Parameter> GetParametersOfDataType(Type reportDataType, string[] supportedLanguages)
{
//add code to return an array of Parameter for prompting users before executing the report
return Array.Empty<Corprio.DataModel.Report.Parameter>();
}
}
- Edit the Startup.cs and modify ConfigureServices as
public void ConfigureServices(IServiceCollection services)
{
services.AddCommonAppServices(Configuration);
services.AddXtraReports<ReportDataService>();
}
- Edit appsettings.Development.json to include the following sections
"CorprioApiSetting": {
"AuthServerUrl": "https://localhost:44334", //replace with the port of your local AuthServer project
"ApiUrl": "https://localhost:44394", //replace with the port of your local Corprio API project
"ApiVersion": "1.0"
},
"CorprioClientCredential": {
"ClientID": "your app ID", //replace with the ID of your application which will be used to register your application in Corprio Portal
"ClientSecret": "xxxxxxxxxxxxxxxxxxx" //replace with the secret of your application
},
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. |
-
net8.0
- Corprio.AspNetCore.Site (>= 2.0.29.54)
- DevExpress.AspNetCore.Reporting (>= 23.2.5)
- DevExpress.Drawing.Skia (>= 23.2.5)
- DevExpress.Pdf.SkiaRenderer (>= 23.2.5)
- Microsoft.ICU.ICU4C.Runtime (>= 72.1.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.30 | 35 | 11/14/2024 |
2.0.29.55 | 138 | 9/23/2024 |
2.0.29.54 | 95 | 9/19/2024 |
2.0.29.38 | 84 | 9/9/2024 |
2.0.29 | 93 | 8/6/2024 |
2.0.28.1 | 61 | 8/5/2024 |
2.0.28 | 73 | 8/1/2024 |
2.0.27 | 60 | 7/31/2024 |
2.0.26.1 | 77 | 7/26/2024 |
2.0.26 | 78 | 7/26/2024 |
2.0.25.4 | 100 | 7/18/2024 |
2.0.25.3 | 91 | 7/18/2024 |
2.0.25.2 | 79 | 7/17/2024 |
2.0.25.1 | 77 | 7/17/2024 |
2.0.25 | 87 | 7/16/2024 |
2.0.24.33 | 121 | 6/24/2024 |
2.0.24.32 | 101 | 6/3/2024 |
2.0.24.31 | 101 | 5/27/2024 |
2.0.24.28 | 93 | 5/18/2024 |
2.0.24.27 | 81 | 5/17/2024 |
2.0.24.24 | 73 | 5/14/2024 |
2.0.24.7 | 112 | 5/9/2024 |
2.0.24.6 | 118 | 5/9/2024 |
2.0.24.1 | 83 | 5/3/2024 |
2.0.24 | 84 | 5/2/2024 |
2.0.23.1 | 110 | 4/26/2024 |
2.0.23 | 87 | 4/26/2024 |
2.0.22.5 | 101 | 4/26/2024 |
2.0.22.3 | 88 | 4/26/2024 |
2.0.22.2 | 109 | 4/22/2024 |
2.0.22.1 | 105 | 4/19/2024 |
2.0.22 | 104 | 4/19/2024 |
2.0.21 | 119 | 4/16/2024 |
2.0.20.2 | 113 | 4/15/2024 |
2.0.20.1 | 121 | 4/14/2024 |
2.0.20 | 108 | 4/14/2024 |
2.0.19.2 | 115 | 4/12/2024 |
2.0.19 | 109 | 4/11/2024 |
2.0.18 | 134 | 4/5/2024 |
2.0.17 | 119 | 3/28/2024 |
2.0.16.4 | 112 | 3/27/2024 |
2.0.16.3 | 94 | 3/27/2024 |
2.0.16 | 109 | 3/27/2024 |
2.0.15.11 | 109 | 3/27/2024 |
2.0.15.10 | 108 | 3/27/2024 |
2.0.15.4 | 98 | 3/25/2024 |
2.0.15.3 | 117 | 3/22/2024 |
2.0.15 | 121 | 3/20/2024 |
2.0.14.18 | 107 | 3/15/2024 |
2.0.14.17 | 120 | 3/11/2024 |
2.0.14.13 | 100 | 3/11/2024 |
2.0.14.10 | 112 | 3/7/2024 |
2.0.14.8 | 96 | 3/6/2024 |
2.0.14.6 | 126 | 3/4/2024 |
2.0.14.4 | 135 | 3/1/2024 |
2.0.14.3 | 119 | 3/1/2024 |
2.0.14.2 | 112 | 3/1/2024 |
2.0.14 | 128 | 3/1/2024 |
2.0.13.8 | 114 | 3/1/2024 |
2.0.13.7 | 120 | 2/27/2024 |
2.0.13.6 | 116 | 2/27/2024 |
2.0.13 | 120 | 2/26/2024 |
2.0.12.5 | 119 | 2/22/2024 |
2.0.12.4 | 111 | 2/22/2024 |
2.0.12.2 | 114 | 2/22/2024 |
2.0.12 | 123 | 2/21/2024 |
2.0.11.8 | 103 | 2/19/2024 |
2.0.11 | 118 | 2/18/2024 |
2.0.10.2 | 106 | 2/16/2024 |
2.0.10.1 | 97 | 2/16/2024 |
2.0.9 | 109 | 2/16/2024 |
2.0.8 | 114 | 2/15/2024 |
2.0.7 | 141 | 1/30/2024 |
2.0.6.1 | 98 | 1/30/2024 |
2.0.6 | 103 | 1/30/2024 |
2.0.5 | 101 | 1/30/2024 |
2.0.1 | 125 | 1/19/2024 |
1.2.0 | 119 | 1/18/2024 |
1.1.60.1 | 111 | 1/19/2024 |
1.1.60 | 115 | 1/17/2024 |
1.1.59.14 | 109 | 1/17/2024 |
1.1.59.6 | 120 | 1/15/2024 |
1.1.59.3 | 127 | 1/12/2024 |
1.1.59 | 110 | 1/12/2024 |
1.1.58 | 151 | 1/4/2024 |
1.1.57 | 148 | 12/20/2023 |
1.1.56 | 149 | 12/18/2023 |
1.1.55 | 132 | 12/15/2023 |
1.1.54.5 | 144 | 12/14/2023 |
1.1.54.3 | 128 | 12/12/2023 |
1.1.54 | 134 | 12/12/2023 |
1.1.53.16 | 160 | 12/5/2023 |
1.1.53.11 | 177 | 11/29/2023 |
1.1.53.6 | 154 | 11/25/2023 |
1.1.53 | 152 | 11/17/2023 |
1.1.52.22 | 133 | 11/17/2023 |
1.1.52.11 | 121 | 11/14/2023 |
1.1.52.9 | 121 | 11/14/2023 |
1.1.52.5 | 135 | 11/14/2023 |
1.1.52.3 | 136 | 11/10/2023 |
1.1.52 | 140 | 11/6/2023 |
1.1.51 | 134 | 11/2/2023 |
1.1.50.9 | 123 | 10/30/2023 |
1.1.50.8 | 131 | 10/27/2023 |
1.1.50.7 | 140 | 10/27/2023 |
1.1.50.6 | 127 | 10/27/2023 |
1.1.50 | 149 | 10/25/2023 |
1.1.49 | 157 | 10/19/2023 |
1.1.48.3 | 146 | 10/19/2023 |
1.1.48 | 158 | 10/18/2023 |
1.1.47.6 | 159 | 10/18/2023 |
1.1.47.5 | 165 | 10/17/2023 |
1.1.47.2 | 131 | 10/17/2023 |
1.1.47.1 | 155 | 10/17/2023 |
1.1.47 | 156 | 10/17/2023 |
1.1.45.6 | 176 | 10/16/2023 |
1.1.45 | 163 | 10/13/2023 |
1.1.44.11 | 152 | 10/12/2023 |
1.1.44.10 | 145 | 10/12/2023 |
1.1.44 | 169 | 10/11/2023 |
1.1.43.1 | 189 | 10/11/2023 |
1.1.43 | 179 | 10/6/2023 |
1.1.42.12 | 156 | 10/6/2023 |
1.1.42.11 | 178 | 9/28/2023 |
1.1.42.10 | 186 | 9/21/2023 |
1.1.42.2 | 150 | 9/19/2023 |
1.1.42.1 | 147 | 9/19/2023 |
1.1.42 | 154 | 9/17/2023 |
1.1.41.1 | 145 | 9/15/2023 |
1.1.41 | 164 | 9/13/2023 |
1.1.40 | 186 | 9/7/2023 |
1.1.39.1 | 195 | 8/25/2023 |
1.1.39 | 213 | 8/18/2023 |
1.1.38 | 183 | 8/11/2023 |
1.1.37.1 | 214 | 7/26/2023 |
1.1.37 | 209 | 7/22/2023 |
1.1.36.1 | 205 | 7/20/2023 |
1.1.36 | 191 | 7/19/2023 |
1.1.35 | 203 | 7/19/2023 |
1.1.34.6 | 234 | 7/7/2023 |
1.1.34.5 | 203 | 7/7/2023 |
1.1.34.4 | 205 | 7/4/2023 |
1.1.34 | 234 | 7/3/2023 |
1.1.33.45 | 237 | 7/3/2023 |
1.1.33.42 | 255 | 6/12/2023 |
1.1.33.41 | 187 | 6/5/2023 |
1.1.33.26 | 290 | 4/11/2023 |
1.1.33.25 | 248 | 4/11/2023 |
1.1.33.20 | 272 | 4/4/2023 |
1.1.33.19 | 248 | 4/3/2023 |
1.1.33.15 | 237 | 3/31/2023 |
1.1.33.14 | 227 | 3/31/2023 |
1.1.33.11 | 284 | 3/29/2023 |