我目前正在使用Visual Studio 2015,asp.net mvc 5开发Web应用程序。我想定义一些连接字符串,但仅限于我的' Dev'环境,现在它们在Web.config中定义,但我希望它们只在Web.Dev.config中。
我在Web.Dev.config中添加了以下内容:
<add xdt:Locator="Match(name)" xdt:Transform="SetAttributes(connectionString)" name="SModel" connectionString="same connection string as in web.config" />
<add xdt:Locator="Match(name)" xdt:Transform="SetAttributes(connectionString)" name="CDev" connectionString="same connection string as in web.config" />
但是当我在Dev环境中运行我的应用程序时,它告诉我连接字符串无法找到。