在 Linq DataContext 的连接字符串中强制使用完整路径
我正在使用 System.Data.Linq.DataContext 文件访问 mdf 数据库
我想使用项目目录中的数据库,而不是调试器在 Debug 目录中创建的数据库。
问题是当我编辑连接字符串并选择 AttachDBFilename 的路径时, VS2008自动用“|DataDirectory|”替换我的项目目录
我该如何解决这个问题?
I'm using System.Data.Linq.DataContext file for accessing a mdf Database
I want to use the Database from the project directory and not the one created by the debugger in the Debug directory.
The problem is when I edit the Connection String and choose the path for AttachDBFilename,
VS2008 automaticly substitutes my project directory with "|DataDirectory|"
How do I get arround this one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑您的应用程序“app.config”文件
转到连接字符串并将连接字符串更改为数据库的路径。
在 DataContext 文件属性中,设置“应用程序设置”= True
然后通过名称选择连接。
Edit your application "app.config" file
Go to the connectionStrings and change the connectionString to the path of your DB.
At the DataContext file properties, set the "Application Settings" = True
Then choose the Connection by it's name and that it.
你已经可以这样写:
SampledbDataContext sdc = new SampledbDataContext(Server.MapPath("~/Sampledb.mdf"));
或在 design.cs 文件中
公共 SampledbDataContext() :
基础(全局::“[在这里写cnn字符串!]”,mappingSource)
{
OnCreated();
}
already you can write like this:
SampledbDataContext sdc = new SampledbDataContext(Server.MapPath("~/Sampledb.mdf"));
or in design.cs file
public SampledbDataContext() :
base(global::"[write cnn string Here !]", mappingSource)
{
OnCreated();
}