Rails:如何实现一个命名范围,返回至少写入一条消息的所有用户?

发布于 2024-11-28 15:38:42 字数 335 浏览 0 评论 0原文

考虑以下关联:

class User < ActiveRecord::Base
  has_many :messages, :foreign_key => "publisher_id"
  scope :wrote_at_least_one_message, <??>
end

class Message < ActiveRecord::Base
  belongs_to :publisher, :class_name => "User"
end

如何实现 wrote_at_least_one_message 命名范围?

Consider the following associations:

class User < ActiveRecord::Base
  has_many :messages, :foreign_key => "publisher_id"
  scope :wrote_at_least_one_message, <??>
end

class Message < ActiveRecord::Base
  belongs_to :publisher, :class_name => "User"
end

How could I implement the wrote_at_least_one_message named scope ?

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

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

发布评论

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

评论(1

顾北清歌寒 2024-12-05 15:38:42

这个怎么样?内连接将检查消息表中至少一项。区别是为了避免重复。

scope :wrote_at_least_one_message, select('DISTINCT users.*').joins(:messages)

How about this? The inner join would check for at least one entry in messages table. Distinct is to avoid duplicates.

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