获取具有一个关系的字段

发布于 2024-12-23 09:02:53 字数 485 浏览 1 评论 0原文

test:
  _attributes:   { phpName: Test }
  name:    { type: varchar, size: 100 }
  one_id:  { type: INTEGER, foreignTable: second, foreignReference: id}
  two_id:  { type: INTEGER, foreignTable: second, foreignReference: id}


second:
  _attributes:   { phpName: Second }
  name:          { type: varchar, size: 100 }

在 Doctrine 中,我可以使用 $test->getSecond1();$test->getSecond2(); 得到这个,但在 Propel 中这不起作用。如何从一个关系中获取另外两个字段?

test:
  _attributes:   { phpName: Test }
  name:    { type: varchar, size: 100 }
  one_id:  { type: INTEGER, foreignTable: second, foreignReference: id}
  two_id:  { type: INTEGER, foreignTable: second, foreignReference: id}


second:
  _attributes:   { phpName: Second }
  name:          { type: varchar, size: 100 }

In Doctrine I can get this with $test->getSecond1(); and $test->getSecond2(); but in Propel this doesnt work. How can I get two other fields from one relation?

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

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

发布评论

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

评论(1

豆芽 2024-12-30 09:02:53

为了获得正确的关联对象,当我们有两个对同一个外部表的外部引用时,我们需要使用:

$test->getSecondRelatedByOneId()
$test->getSecondRelatedByTwoId()

然后我们使用以下命令获取对 Test 对象中的 Second 的外部引用:

$test->getOneId()
$test->getTwoId()

我目前只使用 Propel,如果我误解了,很抱歉。

To get the right associated object, when we have two foreign references to the same foreign table, we need to use:

$test->getSecondRelatedByOneId()
$test->getSecondRelatedByTwoId()

Then we get foreign references to Second in Test object with:

$test->getOneId()
$test->getTwoId()

I use only Propel at the moment, so sorry if I misunderstood.

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