Как я могу установить отношения родитель-потомок в той же таблице, используя ActiveRecord? - PullRequest
3 голосов
/ 20 декабря 2008

Как я могу установить отношения родитель-потомок в одной таблице?

Id int, 
title string, 
ParentId int  ---> this is refer to Id

1 Ответ

2 голосов
/ 20 декабря 2008

Какую реализацию ActiveRecord вы используете?

В Замок ActiveRecord , если ваш стол выглядел так:

table Document (
   Id int primary key,
   ParentDocumentId int,
   Title string
)

вы бы использовали следующий синтаксис:

[ActiveRecord(Table = "Document")]
public class Document : ActiveRecordBase<Document> {

    private int id;
    private Document parent;
    private string title;
    private List<Document> children = new List<Document>();

    [PrimaryKey]
    public int Id {
        get { return id; }
        set { id = value; }

    }

    [BelongsTo("ParentDocumentId")]
    public virtual Document Parent {
        get { return parent; }
        set { parent = value; }
    }

    [HasMany(Table = "Document", ColumnKey = "ParentDocumentId", Inverse = true, Cascade = ManyRelationCascadeEnum.All)]
    public IList<Document> Children {
        get { return children.AsReadOnly(); }
        private set { children = new List<Document>(value); }
    }

    [Property]
    public string Title {
        get { return title; }
        set { title = value; }
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...