如何使用 Magento 的 ORM 在我的自定义表和 magento 的表之间建立内部联接?
我需要在我的自定义表和 Magento 的实体表之一之间建立内部联接。我如何使用 Magento 的 ORM 模型来做到这一点?
预先非常感谢。
I need to make a inner join between my custom table and one of Magento's entity tables.. how can i do this with Magento's ORM model?
Thanks a lot in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通读官方 API 文档并查看
joinTable
、joinField
和joinAttribute
方法。以下是连接与 Orders 集合相关的表的示例:
您还应该查看此问题以获取已尝试的示例以及它们的影响。
HTH,
京东
Read through the official API documentation and review the
joinTable
,joinField
andjoinAttribute
methods.Here is an example for joining tables related to the Orders collection:
You should also review this question for examples of what has been tried and their effects.
HTH,
JD