Corprio.AspNetCore.XtraReportSite 2.0.24.1

dotnet add package Corprio.AspNetCore.XtraReportSite --version 2.0.24.1
NuGet\Install-Package Corprio.AspNetCore.XtraReportSite -Version 2.0.24.1
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="Corprio.AspNetCore.XtraReportSite" Version="2.0.24.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Corprio.AspNetCore.XtraReportSite --version 2.0.24.1
#r "nuget: Corprio.AspNetCore.XtraReportSite, 2.0.24.1"
#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.
// Install Corprio.AspNetCore.XtraReportSite as a Cake Addin
#addin nuget:?package=Corprio.AspNetCore.XtraReportSite&version=2.0.24.1

// Install Corprio.AspNetCore.XtraReportSite as a Cake Tool
#tool nuget:?package=Corprio.AspNetCore.XtraReportSite&version=2.0.24.1

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

  1. Launch Visual Studio
  2. Create a new project
  3. Select the ASP.NET Core Web App (Model-View-Controller) template using C#
  4. Right click on the project and select Manage NuGet Packages
  5. Search for Corprio.AspNetCore.XtraReportSite and install the package
  6. 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>();
        }
}
  1. Edit the Startup.cs and modify ConfigureServices as
public void ConfigureServices(IServiceCollection services)
{
	services.AddCommonAppServices(Configuration);
	services.AddXtraReports<ReportDataService>();
}
  1. 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.24.1 42 5/3/2024
2.0.24 47 5/2/2024
2.0.23.1 76 4/26/2024
2.0.23 69 4/26/2024
2.0.22.5 74 4/26/2024
2.0.22.3 72 4/26/2024
2.0.22.2 80 4/22/2024
2.0.22.1 80 4/19/2024
2.0.22 74 4/19/2024
2.0.21 92 4/16/2024
2.0.20.2 84 4/15/2024
2.0.20.1 90 4/14/2024
2.0.20 75 4/14/2024
2.0.19.2 86 4/12/2024
2.0.19 78 4/11/2024
2.0.18 96 4/5/2024
2.0.17 94 3/28/2024
2.0.16.4 75 3/27/2024
2.0.16.3 68 3/27/2024
2.0.16 81 3/27/2024
2.0.15.11 77 3/27/2024
2.0.15.10 84 3/27/2024
2.0.15.4 84 3/25/2024
2.0.15.3 91 3/22/2024
2.0.15 90 3/20/2024
2.0.14.18 77 3/15/2024
2.0.14.17 84 3/11/2024
2.0.14.13 68 3/11/2024
2.0.14.10 81 3/7/2024
2.0.14.8 69 3/6/2024
2.0.14.6 90 3/4/2024
2.0.14.4 98 3/1/2024
2.0.14.3 84 3/1/2024
2.0.14.2 80 3/1/2024
2.0.14 94 3/1/2024
2.0.13.8 77 3/1/2024
2.0.13.7 87 2/27/2024
2.0.13.6 82 2/27/2024
2.0.13 87 2/26/2024
2.0.12.5 84 2/22/2024
2.0.12.4 81 2/22/2024
2.0.12.2 86 2/22/2024
2.0.12 85 2/21/2024
2.0.11.8 72 2/19/2024
2.0.11 80 2/18/2024
2.0.10.2 81 2/16/2024
2.0.10.1 72 2/16/2024
2.0.9 76 2/16/2024
2.0.8 78 2/15/2024
2.0.7 108 1/30/2024
2.0.6.1 71 1/30/2024
2.0.6 73 1/30/2024
2.0.5 75 1/30/2024
2.0.1 94 1/19/2024
1.2.0 83 1/18/2024
1.1.60.1 76 1/19/2024
1.1.60 82 1/17/2024
1.1.59.14 84 1/17/2024
1.1.59.6 86 1/15/2024
1.1.59.3 93 1/12/2024
1.1.59 79 1/12/2024
1.1.58 123 1/4/2024
1.1.57 117 12/20/2023
1.1.56 123 12/18/2023
1.1.55 107 12/15/2023
1.1.54.5 114 12/14/2023
1.1.54.3 102 12/12/2023
1.1.54 104 12/12/2023
1.1.53.16 132 12/5/2023
1.1.53.11 144 11/29/2023
1.1.53.6 126 11/25/2023
1.1.53 128 11/17/2023
1.1.52.22 112 11/17/2023
1.1.52.11 97 11/14/2023
1.1.52.9 90 11/14/2023
1.1.52.5 113 11/14/2023
1.1.52.3 107 11/10/2023
1.1.52 112 11/6/2023
1.1.51 124 11/2/2023
1.1.50.9 111 10/30/2023
1.1.50.8 120 10/27/2023
1.1.50.7 109 10/27/2023
1.1.50.6 95 10/27/2023
1.1.50 118 10/25/2023
1.1.49 145 10/19/2023
1.1.48.3 116 10/19/2023
1.1.48 129 10/18/2023
1.1.47.6 130 10/18/2023
1.1.47.5 134 10/17/2023
1.1.47.2 122 10/17/2023
1.1.47.1 122 10/17/2023
1.1.47 126 10/17/2023
1.1.45.6 148 10/16/2023
1.1.45 139 10/13/2023
1.1.44.11 126 10/12/2023
1.1.44.10 114 10/12/2023
1.1.44 133 10/11/2023
1.1.43.1 156 10/11/2023
1.1.43 151 10/6/2023
1.1.42.12 127 10/6/2023
1.1.42.11 148 9/28/2023
1.1.42.10 152 9/21/2023
1.1.42.2 121 9/19/2023
1.1.42.1 124 9/19/2023
1.1.42 120 9/17/2023
1.1.41.1 120 9/15/2023
1.1.41 153 9/13/2023
1.1.40 152 9/7/2023
1.1.39.1 172 8/25/2023
1.1.39 186 8/18/2023
1.1.38 176 8/11/2023
1.1.37.1 186 7/26/2023
1.1.37 194 7/22/2023
1.1.36.1 175 7/20/2023
1.1.36 170 7/19/2023
1.1.35 175 7/19/2023
1.1.34.6 201 7/7/2023
1.1.34.5 180 7/7/2023
1.1.34.4 173 7/4/2023
1.1.34 206 7/3/2023
1.1.33.45 209 7/3/2023
1.1.33.42 231 6/12/2023
1.1.33.41 161 6/5/2023
1.1.33.26 260 4/11/2023
1.1.33.25 214 4/11/2023
1.1.33.20 240 4/4/2023
1.1.33.19 237 4/3/2023
1.1.33.15 209 3/31/2023
1.1.33.14 201 3/31/2023
1.1.33.11 254 3/29/2023