Search results
Suggest a FeaturePDF

How to use the Bold Reports® with ASP.NET Core 3.x

This is applicable only for for the Bold Reports® version before 2.3.27. Since, the latest version is not required this setting

We are using Json.NET serializer for Report Service which has been removed from ASP.NET Core 3.0 shared framework. So, you have to use AddNewtonsoftJson() with services to works with Json.NET serializer as per the migration information from .NET Core 3.0

Migrate from ASP.NET Core 2.2 to 3.0

  • Add a package reference to Microsoft.AspNetCore.Mvc.NewtonsoftJson
  • Update Startup.ConfigureServices to call AddNewtonsoftJson.
public void ConfigureServices(IServiceCollection services)
{
…
…
services.AddNewtonsoftJson();
}
Having trouble getting help?
Contact Support
Having trouble getting help?
Contact Support