如何在 Castle ActiveRecord 中定义递归属性?

发布于 2024-09-08 00:25:40 字数 197 浏览 3 评论 0 原文

假设您有一个名为 MyClass 的类。 MyClass 应该有一个名为 Parent 的属性,Parent 本身的类型必须是 MyClass 。这是必要的,因为 MyClass 想要保存树结构。

怎么办呢?

Suppose you have a class named MyClass. MyClass should have a property named Parent, Parent must be of type MyClass itself. It is necessary because MyClass wants to hold a tree structure.

How can it be done?

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

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

发布评论

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

评论(1

清引 2024-09-15 00:25:40

这非常简单:

[ActiveRecord(Lazy = true)]
public class MyClass {
  [BelongsTo]
  public virtual MyClass Parent { get;set; }
}

您可能还想映射子集合。

有关如何对此运行递归查询的更多信息,请参阅以下文章:

It's pretty straightforward:

[ActiveRecord(Lazy = true)]
public class MyClass {
  [BelongsTo]
  public virtual MyClass Parent { get;set; }
}

You might also want to map the collection of children.

See these articles for more information on how to run recursive queries over this:

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