具有 BelongsTo 和 hasOne 关系设置的模型会发生什么情况?
当两个模型同时与belongsTo和hasOne关系关联时会发生什么?
框架是否会检测到这种情况以避免检索太多数据?
编辑:特别是 CakePHP,尽管其他框架所做的也会有所帮助。
What happens when two models are associated with a belongsTo and a hasOne relationship at the same time?
Does the framework detect this situation to avoid retrieving too much data?
EDIT: CakePHP specifically, although what other frameworks do would be helpful, too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大多数框架都会延迟加载数据,即仅在访问对象属性时才检索数据。
Most frameworks do lazy loading of data, that is, data is retrieved only when the object property is accessed.