将数据保存到数据库
可能的重复:
将数据保存到数据库
我正在使用 Visual Studio 2010
数据库:express
sql to linq
==== ===============
在应用程序执行期间向数据库插入数据时,它运行正确。
数据被插入到数据库中。
但是
当我停止应用程序并显示在服务器资源管理器中单击的表数据时,不显示数据。为什么会这样呢?
==========================================
database1.mdf=====>属性=======>复制输出方向=始终复制database1Dataset.xsd======>属性=====>复制输出方向=不复制dataclasses1.dbml===== =>属性=====>复制输出方向=不复制
Possible Duplicate:
save data to DB
I am using visual studio 2010
database:express
sql to linq
===================
when inserting data to DB during application execution, it runs correctly.
data is inserted to the DB.
but
when I stop the application and show table data clicked in server explorer does not show data. Why is this so?
========================================
database1.mdf=====> properties =======>copy output direction=copy always database1Dataset.xsd======>properties=====>copy output direction=do not copy dataclasses1.dbml======>properties=====>copy output direction=do not copy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在查看“错误”的数据库文件。将“database1.mdf”的复制输出方向设置为“不复制”,并手动将数据库文件复制到Debug文件夹。 “始终复制”将用新的数据库文件替换现有的数据库文件,因此您将丢失以前存储的数据。现在停止调试过程后,检查位于“Debug”文件夹中的数据库文件。
I think you are viewing the "wrong" database file. Set Copy Output Direction of "database1.mdf" to "Do not copy" and manually copy the database file to Debug folder. "Copy Always" will replace the existing database file with a fresh one and thus you lose the previously stored data. Now after stopping the debugging process, check the database file which is located in the "Debug" folder.