如何在.NET Core中读取连接字符串?
我只想从配置文件中读取连接字符串,为此向我的项目中添加一个名称为“ appsettings.json”的文件,并在其上添加以下内容: { "ConnectionStrings": { "DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=aspnet- WebApplica71d622;Trusted_Connection=True;MultipleActiveResultSets=true" }, "Logging": { "IncludeScopes": false, "LogLevel": { "Default": "Debug", "System": "Information", "Microsoft": "Information" } } } 在ASP.NET上,我使用了以下方法: var temp=ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString; 现在如何在C#中读取“ DefaultConnection”并将其存储在.NET Core中的字符串变量中?