使用VS2010 IDE进行数据访问?
我正在开发我的第一个 C# 项目,它是一个小型耐心管理系统。我使用 SQL 精简版作为我的数据库。所有与 SQLCE 的接触,我都是通过 VS2010 IDE 完成的,它会自动创建连接字符串、操作数据集等等。 虽然这样编程很方便,但是我很难随心所欲地修改表单上显示的数据(通过datagridview)。所以,我想知道VS2010在哪里存储连接字符串或查询以便我可以修改它?在我看来,VS2010隐藏了所有的细节。 P/S:我使用ADO.NET访问数据库 谢谢大家。
I'm working on my first C# project which is a small patience management system. I used SQL compact edition as my database. All of the contactings with SQLCE, I did them through the VS2010 IDE which automatically create connection string, manipulating dataset, so forth.
Although it's very convenient to program like this, it's hard for me to modify the data displayed(through datagridview) on the form as I like. So, I want to know where VS2010 store the connection string or query so that I can modify it? It seems to me that VS2010 hide all the details.
P/S: I used ADO.NET to access the database
Thanks all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ConnectionString
存储在app.Config
或web.Config
文件中。至于如何查询数据,这取决于您使用的框架,例如实体框架等。The
ConnectionString
is stored in theapp.Config
orweb.Config
file. As for how the data is queryed, that depends on what framework you are using, for example, Entity Frameworks etc.