在 .NET Core 3.0 中支持 Newtonsoft.Json 的使用

Posted szw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在 .NET Core 3.0 中支持 Newtonsoft.Json 的使用相关的知识,希望对你有一定的参考价值。

 

  .NET Core 3.0 已经使用了一整套内置的 Josn 序列化/反序列化方案,而且看上去效率还不错。但对于某些项目必须使用到 Newtonsoft.Json 的时候,就会抛出如下异常:

  System.InvalidOperationException: Property ‘JsonResult.SerializerSettings‘ must be an instance of type ‘System.Text.Json.JsonSerializerOptions‘.

  

  如果需要在 .NET Core 3.0 项目中支持 Newtonsoft.Json,只需要做两步:

  1、引用 Nuget 包:https://www.nuget.org/packages/Microsoft.AspNetCore.Mvc.NewtonsoftJson

  2、在 startup.cs 中,加入代码:

        public void ConfigureServices(IServiceCollection services)
        
            services.AddControllersWithViews()  //也可以是 AddMvc() 等其他扩展方法    
                    .AddNewtonsoftJson();       // 支持 NewtonsoftJson
            //...
            

 

  3、完成。

以上是关于在 .NET Core 3.0 中支持 Newtonsoft.Json 的使用的主要内容,如果未能解决你的问题,请参考以下文章

微软推出.NET Core 3.0,持续的Linux支持和更好的性能

.net core 3.0 Signalr - 04 使用Redis做底板来支持横向扩展

.net core 3.0 Signalr - 04 使用Redis做底板来支持横向扩展

检测到.Net Core 3.0 可能的对象循环,但不支持

.NET Core 3.0及ASP.NET Core 3.0 前瞻

如何为 .NET Core 3.0 中 WPF 配置依赖注入 ?