ADO.NET实体数据模型处理同一个表中的父子关系

发布于 2024-11-01 09:10:57 字数 178 浏览 1 评论 0原文

在我的应用程序中,我使用 ADO.NET 实体数据模型进行数据访问。 我有表类别(id、parentId、name、displayName)。我想访问一个类别的子级。 ADO.NET 实体数据模型是否支持这种行为...或者我每次都必须手动查询?我希望将子项放在延迟加载的 List 属性中。

谢谢,

拉杜 D

In my application I use ADO.NET Entity Data Model for data access.
I have the table categories (id, parentId, name, displayName). I want to access the children of a category. Does ADO.NET Entity Data Model support this behavior ... or I have to query manually each time? I would prefer to have the children in a List property that is lazy loaded.

Thanks,

Radu D

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

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

发布评论

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

评论(1

沙与沫 2024-11-08 09:10:57

是的,它支持这种关系。如果您在数据库中定义了关系,那么当您从数据库更新模型时,应该会自动创建该关联。如果您没有在数据库中定义此关系,您可以在模型中手动将其定义为外键关联。 这里< /a> 是一些如何定义关系的一般示例。您只需在同一个实体上执行此操作即可。

Yes it supports such relation. If you have the relation defined in your database this association should be created automatically when you update model from database. If you don't have this relation defined in database you can define it manually in the model as foreign key association. Here is some general example how to define a relation. You just need to do that on the same entity.

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