码迷,mamicode.com
首页 > Web开发 > 详细

Net Core 读取json文件

时间:2021-04-26 14:01:34      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:current   常见   baseurl   col   pre   cto   conf   TBase   url   

一种是网上常见的一种

  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文件

标签:current   常见   baseurl   col   pre   cto   conf   TBase   url   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!