使用反射和集合来识读对象理性数据库

发布于 2024-07-16 08:52:07 字数 361 浏览 5 评论 0原文

有 C# 问题;

我一直在寻找一种方法,可以通过迭代它们及其属性/方法来在运行时动态创建对象。 到目前为止,我已经使用 Reflections 和 foreach 来了解类属性。 这是为了在数据网格视图上显示各个表中的所有记录。 然而,我认为一种方法是使用对象理性映射来连接、填充数据集,然后能够将其显示在数据网格视图上进行编辑等。

**编辑:* 也许迭代类的实际名称空间,所有这些类继承了一个名为 Table 的类,所以我想应该有一个方法可以在运行时调用所有类来从数据库中获取数据*

到目前为止我主要完成了 Java 编程,所以对 OO 编程有一个很好的了解只是对 .NET 不太熟悉,所以寻找最好的方法。

提前致谢

Have C# question;

I've been searching for a way to lets say dynamic created objects at runtime by iterating though them and there properties/methods. so far i've played with using Reflections and foreach to illiterate the class properties. This is to display all records in various tables on a Data Grid view.
However one approach I think is to use Object-rational mapping to connect, populate a dataset and then be able to display it on the Data Grid view for editing etc..

**Edit:* Maybe iterating over the actually namespace of classes, all the classes inherit a class called Table so I guess there should be a method in invoking all classes at run-time to fetch the data from the database*

I've done mostly Java programming up until now so have a good idea of OO-programming just not so familiar with .NET so looking for the best approach in this.

Thanks in Advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

时间海 2024-07-23 08:52:07

.NET 中有可用的对象关系库。 如果您的目标是 SQL Server,请使用 Linq to SQL,或者如果您需要跨数据库支持,请尝试实体框架。

There are object-relational libraries available in .NET. If you're targeting SQL Server, use Linq to SQL, or if you need cross-database support, try the Entity Framework.

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