ReportViewer Replacement during .net core upgrade

TracyLiang 41 Reputation points
2022-02-03T09:04:21.707+00:00

Now I have a project to upgrade from asp.net to .net core, there are a lot of reports using reportviewer.
But it is pity that it shows that Microsoft.ReportViewer.WebForms is Unresolved assembly by ApiPort analysis,.

![170876-%E5%B1%8F%E5%B9%95%E6%88%AA%E5%9B%BE-2022-02-03-165627.jpg][1]

I'd like to ask my question:
Is there modern solution of reportviewer in .net core for me to upgrade asp.net to .net core with lower efforts?

Many appreciations for your great support!

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,187 questions
SQL Server Reporting Services
SQL Server Reporting Services
A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
2,806 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 56,686 Reputation points
    2022-02-03T15:58:27.283+00:00

    Report Viewer Controls have not made the transition to .net core. You can call the web service api

    https://learn.microsoft.com/en-us/sql/reporting-services/report-server-web-service/report-server-web-service?view=sql-server-ver15

    Or host the controls in a standalone site.

    A support request was opened in 2016, and still no .net core version so I would not hold my breath. . There is an open source solution

    https://github.com/lkosson/reportviewercore/

    0 comments No comments