无法创建数据库... EF 4.2 代码优先 + 2011 年 6 月 使用 SQLExpress 和 |DataDirectory| 进行单元测试中的 CTP

发布于 2024-12-11 09:34:03 字数 652 浏览 1 评论 0原文

EF 生成的查询如下:

create database [Test] on primary (name=N'Test.mdf', filename=N'\Test.mdf') log on (name=N'Test_log.ldf', filename=N'I:\Test_log.ldf')

连接字符串:

Data Source=.\SQLEXPRESS; Integrated Security=SSPI; Initial Catalog=Test; AttachDBFilename=|DataDirectory|Test.mdf;

依赖项:

  • Entity Framework 4.2 Preview (Nuget)
  • Entity Framework June 2011 CTP
  • A 单元测试项目(使用 NUnit)
  • SQLExpress
  • AttachDBFilename=|DataDirectory|Test.mdf;

为了使这一切正常工作,我必须为 AttachDbFilename 指定绝对路径。

我已经能够在不同的设置中使用它,但安装 CTP 后它就无法工作了。这是一个已知问题吗?

The query generated by EF is the following:

create database [Test] on primary (name=N'Test.mdf', filename=N'\Test.mdf') log on (name=N'Test_log.ldf', filename=N'I:\Test_log.ldf')

The connection string:

Data Source=.\SQLEXPRESS; Integrated Security=SSPI; Initial Catalog=Test; AttachDBFilename=|DataDirectory|Test.mdf;

Dependencies:

  • Entity Framework 4.2 Preview (Nuget)
  • Entity Framework June 2011 CTP
  • A Unit test project (using NUnit)
  • SQLExpress
  • AttachDBFilename=|DataDirectory|Test.mdf;

In order for all this to work, I had to specify an absolute path for AttachDbFilename.

I've been able to use it on a different set-up but after installing CTP it won't work. Is this a known issue?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

牵你手 2024-12-18 09:34:03

您正在 I: 驱动器上创建数据库文件,因此问题可能与权限相关。

要测试是否是权限问题:尝试在本地 C 驱动器上创建一个文件夹,给予Everyone完全控制权,然后更改连接以使用该文件夹。

You are creating the database file on the I: drive, the problem could therefore be rights related.

To test if it is a rights issue: Try creating a folder on the local C drive, give Everyone full controll, and then change the connections to use that folder.

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