用.mdf文件替换本地数据库的最有效方法(具有实体模型的项目)
在我的项目中,我使用实体框架,从一开始我就从本地数据库。现在我想使用 .mdf 文件(在项目目录中)而不是本地数据库,但我想在尽可能少地干扰项目的情况下完成此操作。
如果可能的话,我不想创建新模型或更改实体名称等。 做到这一点最有效的方法是什么?我可以只更改连接字符串吗?如果是的话,我应该把它改成什么?
In my project I'm using Entity Framework and from the start I created the Model from a local database. Now I want to use a .mdf file (in the project directory) instead of a local database, but I want to do this with as little interference in the project as possible.
If it is possible I don't want to create a new Model or changing the Entity name and so on.
What is the most efficient way to do this? Can I just change the connection string? And if yes, what should I change it to?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将 mdf 文件复制到您的 AppData 目录并将连接更改为如下所示:
注意这部分: AttachDbFilename=|DataDirectory|\MyDBFile.mdf;
Just copy the mdf file to your AppData directory and change the connection to look like this:
Note this part: AttachDbFilename=|DataDirectory|\MyDBFile.mdf;