New to Telerik Reporting? Download free 30-day trial

How to implement Telerik Reporting in ASP.NET Core 2.1 MVC

Environment

Product Version 13.0.19.116 and above
Product Progress® Telerik® Reporting
Project Type ASP.NET Core
Preferred Language C Sharp

Description

How to implement the Telerik Reporting engine and viewer in ASP.NET Core MVC project?

Solution

There are some specifics related to ASP.NET Core configuration that we will discuss in the beginning. Please note that the configuration is mostly taken from the official documentation: Configuration in ASP.NET Core.

App configuration in ASP.NET Core uses the new SDK-style project and utilizes appsettings.json as a configuration file. To work these settings in your ASP.NET Core application, it is recommended that you only instantiate a ConfigurationService in your application’s Startup class. Then, use the Options pattern to configure individual settings. For example, the ConnectionStrings setting in JSON-based format would look like this:

{
  ...
  "ConnectionStrings": {
      "Telerik.Reporting.Examples.CSharp.Properties.Settings.TelerikConnectionString": "Data Source=.\\SQLEXPRESS;Initial Catalog=AdventureWorks;Integrated Security=true"
  }  
}

This type of connection string lacks information about the data provider and will use System.Data.SqlClient as provider invariant name. When it's necessary to specify a different data provider, the following notation is also supported:

{
  ...
  "ConnectionStrings": {
    "Telerik.Reporting.Examples.CSharp.Properties.Settings.TelerikConnectionString": {
      "connectionString": "Data Source=.\\SQLEXPRESS;Initial Catalog=AdventureWorks;Integrated Security=true",
      "providerName": "System.Data.SqlClient"
    }
  }
}

The last supported type of ConnectionStrings configuration uses an array to provide information about each connection string:

{
  ...
  "ConnectionStrings": [
    {
      "name": "Telerik.Reporting.Examples.CSharp.Properties.Settings.TelerikConnectionString",
      "connectionString": "Data Source=.\\SQLEXPRESS;Initial Catalog=AdventureWorks;Integrated Security=true",
      "providerName": "System.Data.SqlClient"
    }
  ]
}

For more information about Telerik Reporting JSON-based configuration structure, please refer to the Telerik Reporting Configuration Layout help article.

We have to build the configuration in Startup.cs as we implement a sample ConfigurationService class which ensures reading the appsettings.json as config file and used in the ReportsController constructor:

public class ConfigurationService
{
    public ConfigurationService(IHostingEnvironment environment)
    {
        this.Environment = environment;

        var configFileName = System.IO.Path.Combine(environment.ContentRootPath, "appsettings.json");
        var config = new ConfigurationBuilder()
                        .AddJsonFile(configFileName, true)
                        .Build();

        this.Configuration = config;
    }

    public IConfiguration Configuration { get; private set; }

    public IHostingEnvironment Environment { get; private set; }
}  

If we want to inject our configuration to our controllers, we'll need to register it with the runtime. We do so via Startup.ConfigureServices:

IServiceCollection services;

// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
    this.services = services;
    this.services.Configure<CookiePolicyOptions>(options =>
    {
        // This lambda determines whether user consent for non-essential cookies is needed for a given request.
        options.CheckConsentNeeded = context => true;
        options.MinimumSameSitePolicy = SameSiteMode.None;
    });
    this.services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);

    // Configure dependencies for ReportServiceConfiguration.
    services.TryAddSingleton<ConfigurationService>(sp => new ConfigurationService(sp.GetService<IHostingEnvironment>()));
    services.TryAddScoped<IReportResolver>(sp =>
      new ReportTypeResolver().AddFallbackResolver(new ReportFileResolver(
        Path.Combine(sp.GetRequiredService<ConfigurationService>().Environment.WebRootPath, "Reports"))));
    services.TryAddScoped<IReportServiceConfiguration>(sp =>
      new ReportServiceConfiguration
      {
        ReportingEngineConfiguration = sp.GetRequiredService<ConfigurationService>().Configuration,
        HostAppId = "Html5DemoAppCore",
        Storage = new FileStorage(),
        ReportResolver = sp.GetRequiredService<IReportResolver>()
      });
}

After the initial configuration is done, you can create ReportsController class which will look like:

namespace AspNetCoreMvcDemo.Controllers
{
    using Microsoft.AspNetCore.Mvc;
    using System.Net;
    using System.Net.Mail;
    using Telerik.Reporting.Services;
    using Telerik.Reporting.Services.AspNetCore;

    [Route("api/reports")]
    public class ReportsController : ReportsControllerBase
    {
        public ReportsController(IReportServiceConfiguration reportServiceConfiguration)
            : base(reportServiceConfiguration)
        {
        }
    }

    protected override HttpStatusCode SendMailMessage(MailMessage mailMessage)
    {
      throw new System.NotImplementedException("This method should be implemented in order to send mail messages");
      //using (var smtpClient = new SmtpClient("smtp01.mycompany.com", 25))
      //{
      //    smtpClient.DeliveryMethod = SmtpDeliveryMethod.Network;
      //    smtpClient.EnableSsl = false;

      //    smtpClient.Send(mailMessage);
      //}
      //return HttpStatusCode.OK;
    }
}

In the end, we should create the report viewer. As the HTML5 ASP.NET MVC Report Viewer is a server-side wrapper for the HTML5 JavaScript ReportViewer, it requires a reference to Telerik.ReportViewer.Mvc.dll. However, as this assembly is built against the full .NET Framework, the only possible approach is creating a pure HTML5 Viewer.

Notes

The demo application could be downloaded from here.

See Also

For additional information, you could refer to the new conceptual documentation article .NET Core Support that explains how to use reports in pure .NET Core application for Windows and Linux platforms.

In this article