My example datamapper class
class Simple
include DataMapper::Resource
property :id, Serial
property :uid, Integer
end
And I have an array id uid's I would like to add.
items=[1,2,3,4,5,6,7,8,9,1,1,1,2,2,2,3]
If I wanted to search for any of the id's in the array I would do something like
Simple.all(:uid.in=>items)
Is there a way to do the same for creating multiple records such as:
Simple.create(:uid=>items) #this doesn't work by the way
A way around this is:
items.each{|item|Simplel.create(:uid=>item)}
But this can't be efficient,there has to be a better way.