是否可以在C#.net中包含主机的app.config?所以我可以加载不同的连接字符串和其他选项?
喜欢
if (host == "stackoverflow"){
//inlcude stackoverflow.config
}else{
//include othersite.config
}
答案 0 :(得分:0)
可以加载配置文件。你应该看看ConfigurationManager documentation
但是如果你想使用不同的连接字符串,可以像这样使用它的名字。见Retrieving Connection Strings at Run Time