我在同一个解决方案中有我的应用程序和 WCF 服务。我在一个类(在应用程序中)中编写了一个属性来从Web.Config
应用程序中获取 ConnectionString。现在需要在我的 WCF 服务中访问相同的连接字符串,但我的 WCF 服务中有另一个连接字符串Web.Config
(其中定义了所有绑定)。但我需要访问app的连接字符串。
//This is the connection string of App, where I am retrieving it in a common class.
public static readonly string ConnectionString = ConfigurationManager.ConnectionStrings["ConnectionString"].ToString();