I have set up a rails3+mongoid application and when I open the rails console, none of the finders seem to work - http://d.pr/FNzC
User.all User.find(:all, :condi
Try this:
User.all.first User.find(:first, :conditions => {:first_name => 'John'}) User.where(:first_name => 'John').first