App.config数据源相对路径?

时间:2015-07-30 20:06:21

标签: visual-studio-2013 datasource app-config relative-path

这是我电脑上本地数据库的连接字符串:

<connectionStrings>
<add name="DataEntities" 
   connectionString="metadata=res://*/Data.csdl|res://*/Data.ssdl|res://*/Data.msl;
   provider=System.Data.SqlServerCe.4.0;provider connection string=&quot;
   Data Source=C:\Users\User\Documents\GitHub\incidentapp\incidentapp\Database\Data.sdf&quot;"
  providerName="System.Data.EntityClient"/>
</connectionStrings>

但是我想在计算机之间来回移动项目。如果数据库位于projectapp的项目位置,如何设置数据库的相对路径。

1 个答案:

答案 0 :(得分:0)

我明白了。这是因为我正在运行调试,因此默认&#39; location位于debug文件夹中。所以我只需要在开发时将数据库位置移动到调试文件夹。 感谢。