我有2个型号:
class User
include Mongoid::Document
field :email, :type => String, :null => false, :default => ""
.
.
end
class Admin
include Mongoid::Document
field :email, :type => String, :null => false, :default => ""
.
.
end
我希望使用mongoid查询查找所有用户在Admin
模型中都有相同的电子邮件,例如:
User.where(:email => {exist_admin_class?})
这可能吗?或者我使用has_one User
和belongs_to Admin
这样做的最佳方式是什么?
非常感谢!
答案 0 :(得分:0)