ADO.NET实体数据模型处理同一个表中的父子关系
在我的应用程序中,我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,它支持这种关系。如果您在数据库中定义了关系,那么当您从数据库更新模型时,应该会自动创建该关联。如果您没有在数据库中定义此关系,您可以在模型中手动将其定义为外键关联。 这里< /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.