Corprio.AspNetCore.XtraReportSite 2.0.24.7

There is a newer version of this package available.
See the version list below for details.
dotnet add package Corprio.AspNetCore.XtraReportSite --version 2.0.24.7
NuGet\Install-Package Corprio.AspNetCore.XtraReportSite -Version 2.0.24.7
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.7" />
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.7
#r "nuget: Corprio.AspNetCore.XtraReportSite, 2.0.24.7"
#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.7

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

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.31 66 5/27/2024
2.0.24.28 56 5/18/2024
2.0.24.27 55 5/17/2024
2.0.24.24 50 5/14/2024
2.0.24.7 84 5/9/2024
2.0.24.6 87 5/9/2024
2.0.24.1 56 5/3/2024
2.0.24 56 5/2/2024
2.0.23.1 82 4/26/2024
2.0.23 74 4/26/2024
2.0.22.5 79 4/26/2024
2.0.22.3 80 4/26/2024
2.0.22.2 82 4/22/2024
2.0.22.1 84 4/19/2024
2.0.22 78 4/19/2024
2.0.21 94 4/16/2024
2.0.20.2 87 4/15/2024
2.0.20.1 92 4/14/2024
2.0.20 78 4/14/2024
2.0.19.2 88 4/12/2024
2.0.19 80 4/11/2024
2.0.18 104 4/5/2024
2.0.17 97 3/28/2024
2.0.16.4 77 3/27/2024
2.0.16.3 70 3/27/2024
2.0.16 83 3/27/2024
2.0.15.11 79 3/27/2024
2.0.15.10 86 3/27/2024
2.0.15.4 87 3/25/2024
2.0.15.3 93 3/22/2024
2.0.15 92 3/20/2024
2.0.14.18 79 3/15/2024
2.0.14.17 86 3/11/2024
2.0.14.13 70 3/11/2024
2.0.14.10 84 3/7/2024
2.0.14.8 71 3/6/2024
2.0.14.6 92 3/4/2024
2.0.14.4 100 3/1/2024
2.0.14.3 86 3/1/2024
2.0.14.2 82 3/1/2024
2.0.14 96 3/1/2024
2.0.13.8 79 3/1/2024
2.0.13.7 90 2/27/2024
2.0.13.6 84 2/27/2024
2.0.13 89 2/26/2024
2.0.12.5 87 2/22/2024
2.0.12.4 83 2/22/2024
2.0.12.2 88 2/22/2024
2.0.12 88 2/21/2024
2.0.11.8 75 2/19/2024
2.0.11 85 2/18/2024
2.0.10.2 83 2/16/2024
2.0.10.1 77 2/16/2024
2.0.9 78 2/16/2024
2.0.8 80 2/15/2024
2.0.7 112 1/30/2024
2.0.6.1 73 1/30/2024
2.0.6 75 1/30/2024
2.0.5 77 1/30/2024
2.0.1 96 1/19/2024
1.2.0 86 1/18/2024
1.1.60.1 79 1/19/2024
1.1.60 84 1/17/2024
1.1.59.14 86 1/17/2024
1.1.59.6 88 1/15/2024
1.1.59.3 95 1/12/2024
1.1.59 81 1/12/2024
1.1.58 125 1/4/2024
1.1.57 120 12/20/2023
1.1.56 124 12/18/2023
1.1.55 108 12/15/2023
1.1.54.5 121 12/14/2023
1.1.54.3 103 12/12/2023
1.1.54 105 12/12/2023
1.1.53.16 133 12/5/2023
1.1.53.11 146 11/29/2023
1.1.53.6 127 11/25/2023
1.1.53 129 11/17/2023
1.1.52.22 113 11/17/2023
1.1.52.11 98 11/14/2023
1.1.52.9 91 11/14/2023
1.1.52.5 114 11/14/2023
1.1.52.3 109 11/10/2023
1.1.52 114 11/6/2023
1.1.51 125 11/2/2023
1.1.50.9 114 10/30/2023
1.1.50.8 121 10/27/2023
1.1.50.7 111 10/27/2023
1.1.50.6 96 10/27/2023
1.1.50 119 10/25/2023
1.1.49 146 10/19/2023
1.1.48.3 117 10/19/2023
1.1.48 130 10/18/2023
1.1.47.6 131 10/18/2023
1.1.47.5 135 10/17/2023
1.1.47.2 123 10/17/2023
1.1.47.1 123 10/17/2023
1.1.47 127 10/17/2023
1.1.45.6 149 10/16/2023
1.1.45 141 10/13/2023
1.1.44.11 127 10/12/2023
1.1.44.10 115 10/12/2023
1.1.44 134 10/11/2023
1.1.43.1 157 10/11/2023
1.1.43 152 10/6/2023
1.1.42.12 128 10/6/2023
1.1.42.11 150 9/28/2023
1.1.42.10 153 9/21/2023
1.1.42.2 122 9/19/2023
1.1.42.1 125 9/19/2023
1.1.42 121 9/17/2023
1.1.41.1 121 9/15/2023
1.1.41 154 9/13/2023
1.1.40 153 9/7/2023
1.1.39.1 174 8/25/2023
1.1.39 187 8/18/2023
1.1.38 177 8/11/2023
1.1.37.1 188 7/26/2023
1.1.37 195 7/22/2023
1.1.36.1 182 7/20/2023
1.1.36 171 7/19/2023
1.1.35 182 7/19/2023
1.1.34.6 208 7/7/2023
1.1.34.5 181 7/7/2023
1.1.34.4 174 7/4/2023
1.1.34 207 7/3/2023
1.1.33.45 210 7/3/2023
1.1.33.42 233 6/12/2023
1.1.33.41 162 6/5/2023
1.1.33.26 262 4/11/2023
1.1.33.25 215 4/11/2023
1.1.33.20 241 4/4/2023
1.1.33.19 238 4/3/2023
1.1.33.15 211 3/31/2023
1.1.33.14 202 3/31/2023
1.1.33.11 255 3/29/2023