如果我已经有了外键的 ID,那么在 symfony2 的对象中插入外键的最佳做法应该是什么?
如果我有一个动作:
/**
* @Route("assignCategory/{category}/product/{product}")
*/
public function assignCategory($category, $product)
{
...
// here i should set the category to the existing product
...
}
我不喜欢从数据库中检索类别的想法。
如果您在会话中有 id 并且您想将它们存储到对象但不从数据库中检索它,这也适用......所以......最好的做法应该是什么?