首页 > Web开发 > 详细

Net Core 读取json文件

时间:2021-04-25 23:20:53      阅读:21      评论:0      收藏:0      [点我收藏+]

一种是网上常见的一种

  var builder1 = new ConfigurationBuilder().SetBasePath(Directory.GetCurrentDirectory()).AddJsonFile("appsettings.json");
  var configuration = builder1.Build();
  string baseUrl = configuration.GetSection("ConnectionStrings:xxx").Value;

另外一种是

var config = new ConfigurationBuilder()
                          .AddJsonFile("appsettings.json", optional: false, reloadOnChange: true)
                        //.AddEnvironmentVariables()
                         .Build();
            Configuration = config.GetSection("ConnectionStrings:xxx");

 

Net Core 读取json文件

原文:https://www.cnblogs.com/ZkbFighting/p/14701518.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!