无法使用 EF 4.0 将记录保存在附加的 .mdf 文件中
我想使用 EF 4.0 模型创建 VS 2010 项目。
但插入新记录 和附加的 .mdf 文件 后,我没有记录和错误。
但如果基础连接到Sql Server,它就可以正常工作。
请帮我将记录插入附加 .mdf 数据库
I want to create a VS 2010 project with EF 4.0 model.
But I have no records and errors after inserting new record with attached .mdf file .
But if the base is connected to Sql Server, it works fine.
Please help me to insert records to attached .mdf db
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要确保数据库不在共享文件夹中,位于您的电脑上,不是只读的,您对包含它的文件夹具有写入权限,并且没有数据库已附加到同名的服务。首先确保您可以连接到服务器资源管理器窗口。
如果您想使用松散的数据库文件,请考虑使用 SQL Server CE。
另外,请确保每个构建都不会覆盖该文件。 (使用“如果较新则复制”,而不是“始终复制”。)
You need to make sure DB is not in a shared folder, is on your pc, is not read only, that you have write permissions to the folder that contains it and there is no DB already attached to service with same name. Make sure you can connect with Server Explorer window first.
Consider using SQL Server CE, if you want to work with loose DB files.
Also, make sure the file is not overwritten with each build. (Use "Copy if newer", not "Copy always".)