我的数据库在哪里?
我正在使用实体框架 4.1 玩一个新的 MVC 3 项目。当我使用注册时,我可以通过进入 VS 中的服务器资源管理器来查看我的数据。现在,我创建了自己的模型和用于存储该数据的上下文。我的问题是我不知道这个数据库实际上在哪里,也不知道如何在服务器资源管理器中查看它?我知道这些数据存储在某个地方,因为每次我运行应用程序时它都在那里。如果这个问题不清楚,请提出任何有助于理解的问题。感谢您的帮助。
I am playing around with a new MVC 3 project with entity framwork 4.1. When I use the registration I can see my data by going into the server explorer in VS. Now I created my own model and a context for storing that data. My problem is that I do not know where this database actually is or how I can view it in the server explorer? I know this data is being stored somewhere because it is there each time I run the app. If this question is not clear please ask any question that will make it easier to understand. Thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,它存储在您的 App_Data 文件夹中(如果您使用表单身份验证创建了 ASP.NET MVC 3 应用程序)。
By default, it is stored in your App_Data folder (if you created ASP.NET MVC 3 application with forms authentication).