在mongoid 2.x
这个查询中可能吗?
User.find(username: "hyperrjas")
我得到错误:
Mongoid::Errors::DocumentNotFound: Document not found for class User with id(s) {:username=> "hyperrjas"}.
在 mongoid 3.x 中可以使用Model.find_by(username: "hyperrjas")
mongoid 2.x
作为我使用的替代方案
Model.find_or_create_by(username: "hyperrjas")
但我的问题是,是否可以Model.find(username: "hyperrjas")
与 mongoid 2.x 一起使用