如何使用关联模型的 order by 来获取模型?
我有模型A和B。A has_many B。现在我想获取按B的updated_at排序的A的所有记录。是否可以为此编写一个查找函数?
I have Models A and B. A has_many B. Now I wanna fetch all the records of A ordered by the B's updated_at. Is it possible to write a find function for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试这样的事情:
Try something like this:
假设一个老师有很多学生,而不是 A 和 B:
Instead of A and B, lets say a Teacher has many Students:
当 A 有很多 B 时就没有意义了。
考虑这个例子:
假设如下:
现在哪一个应该排在第一位,A1 还是 A2?
It doesn't makes sense when A has many Bs.
Consider the example:
Assuming the following:
Now which one should come first, A1 or A2?