Asp.Net Core 获取配置系统的链接字符串
2021-01-14 16:11
标签:code direct env set color class net nbsp collect Asp.Net Core 获取配置系统的链接字符串 标签:code direct env set color class net nbsp collect 原文地址:https://www.cnblogs.com/LinWenQiang/p/13426772.htmlIConfiguration configuration = new ConfigurationBuilder()
.SetBasePath(Environment.CurrentDirectory)
.AddJsonFile("AppSettings.json", true, true)
.AddInMemoryCollection()
.Build();
var sqlConnectionString= configuration["ConnectionStrings:sqlConn"];
上一篇:Web自动化测试:加入log日志
下一篇:ajax缓存机制
文章标题:Asp.Net Core 获取配置系统的链接字符串
文章链接:http://soscw.com/index.php/essay/41844.html