在两个实体之间创建关联时是否可以传递 id 而不是实体?

发布于 2025-01-01 02:35:06 字数 662 浏览 0 评论 0原文

我有一个 Item 实体和一个 Category 实体。一个Item有一个Category。我的映射代码如下所示:

// Item.php
/**
 * @ORM\ManyToOne(targetEntity = "Category")
 * @ORM\JoinColumn(name = "category_id", referencedColumnName = "id")
 */
protected $category;

要创建关联,我使用此方法:

// Item.php
public function setCategory(Category $category) {
  $this->category = $category;
}

只要我首先从数据库获取 Category 实体,该方法就可以正常工作。但我想知道是否可以传递 id 而不是 Category 实体。我想使用标量值手动设置 JoinColumn category_id 。但由于 category_id 不是 Item 的实际成员,我不确定如何做到这一点。

I have an Item entity and a Category entity. An Item has one Category. My mapping code looks like this:

// Item.php
/**
 * @ORM\ManyToOne(targetEntity = "Category")
 * @ORM\JoinColumn(name = "category_id", referencedColumnName = "id")
 */
protected $category;

To create the association, I use this method:

// Item.php
public function setCategory(Category $category) {
  $this->category = $category;
}

This works fine as long as I first fetch the Category entity from the DB. But I'm wondering if it's possible to pass an id instead of the Category entity. I'd like to manually set the JoinColumn category_id with a scalar value. But sine category_id isn't an actual member of Item, I'm not sure how I can do this.

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

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

发布评论

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

评论(1

妞丶爷亲个 2025-01-08 02:35:06

使用 getReference

$item->setCategory($em->getReference('Category', $id));

Use getReference:

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