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")
mongoid2.xで使用できるかどうかです。