This is an alias for find(:all). You can pass in all the same arguments to this method as you can to find(:all)
find
Finds the first match for value where |value| is the value of some |field|, or the wildcard match. This is only useful for derived classes. usage: Subclass.find(:all, :attribute => "cn", :value => "some*val")
Subclass.find(:all, 'some*val')
A convenience wrapper for find(:first, *args). You can pass in all the same arguments to this method as you can to find(:first).
A convenience wrapper for find(:last, *args). You can pass in all the same arguments to this method as you can to find(:last).
[Validate]