gpt4 book ai didi

c# - 在 .net 4 中获取连接字符串

转载 作者:IT王子 更新时间:2023-10-29 04:13:26 25 4
gpt4 key购买 nike

我想从 app.config 文件中获取连接字符串。

connectionString = System.Configuration.ConfigurationSettings.AppSettings["DBEntities"];

但它不起作用。它是空的。

我无法访问 System.Configuration.ConfigurationManager,因为它是 .NET 4。如何从 app.config 获取我的连接字符串?

最佳答案

使用

string connectionString = ConfigurationManager.ConnectionStrings[connectionName].ConnectionString; 

确保在您的项目中添加对 System.configuration 的引用。

关于c# - 在 .net 4 中获取连接字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3941556/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com