coldfusion 9 orm - 如何定义关系

时间:2010-11-23 14:20:21

标签: database orm coldfusion coldfusion-9

现在假装你有这样的数据库结构:

对象

{
    id,
    name
}

table ObjectRelation

{
    id,
    parentID, -- points to id in the object table
    childID   -- points to id in the object table
}

我希望在我的模型中拥有以下内容:

{
    property name
    property children
    property parent
}

在这种情况下你们如何定义父属性?请记住,根元素显然没有父对象。

1 个答案:

答案 0 :(得分:0)

这是你在找什么?

component persistent="true" {
property name="id" ormtype="integer" type="numeric" column="id" fieldtype="id" generator="identity";
property name="name";
property name="children"
    fieldtype="one-to-many"
    cfc="Object"
    linktable="ObjectRelation"
    fkcolumn="parentID"
    singularname="child"
    lazy=true
    inversejoincolumn="childID";
property name="parent"
    fieldtype="many-to-one"
    cfc="Object"
    linktable="ObjectRelation"
    fkcolumn="childID"
    lazy=true
    inversejoincolumn="parentID";
}