使用VS2010 IDE进行数据访问?

发布于 2024-10-12 21:42:43 字数 240 浏览 3 评论 0原文

我正在开发我的第一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

箜明 2024-10-19 21:42:43

ConnectionString 存储在 app.Configweb.Config 文件中。至于如何查询数据,这取决于您使用的框架,例如实体框架等。

The ConnectionString is stored in the app.Config or web.Config file. As for how the data is queryed, that depends on what framework you are using, for example, Entity Frameworks etc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文