Recently discovered some quirks while working with Datamapper (ver 0.10.2). If you want to fetch deleted objects you need to use the syntax:
Model.with_deleted { Model.all }
Which by the way will only find deleted objects, if you want all the objects your going to have to do something like
Model.wit…