在Doctrine 1中,我看到它支持分层数据支持?在Doctrine 2中有没有?
好的,所以我使用了Nested Set Extension for Doctrine 2。我有一些问题
1。插入节点
// in the docs
$child1 = new Category();
$child1->name = 'Child Category 1';
$child2 = new Category();
$child2->name = 'Child Category 2';
$category->addChild($child1);
$category->addChild($child2);
似乎我必须做像这样的事情
$root = $nsm->createRoot($category);
$root->addChild($child1);
$root->addChild($child2);
同样要添加子孩子
$child2wrapper = $root->addChild($child2);
$child2wrapper->addChild($newChild);
2。 abt根域并有多棵树。
说我想要多棵树,我看到扩展名没有填充我的root
字段?我是如何填充它的?