在 Linq DataContext 的连接字符串中强制使用完整路径

发布于 2024-07-10 13:33:44 字数 209 浏览 9 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帅气称霸 2024-07-17 13:33:44

编辑您的应用程序“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.

萌面超妹 2024-07-17 13:33:44

你已经可以这样写:
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();
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文