.exists?

Model.exists?(:attr1 => "x", :attr2 => "y", :attr3 => "z")

note that the the conditions will be ANDed. if you need to use OR, then you need to use a different conditions format

Model.exists?(["attr1 = ? OR att1 = ?", x, y])

Chris