I have the following code that I want to change a little
model.fetch({id: 'foo-42});
return model.attributes.content;
What I want to do is to retrieve all 'foo-' record (then execute select * from myTable where id like 'foo-%' ) Is it possible to do it so without breaking everything?
Thank you