binarylogic / searchlogic

Searchlogic provides object based searching, common named scopes, and other useful tools.
http://rdoc.info/projects/binarylogic/searchlogic
MIT License
1.4k stars 133 forks source link

tried google groups -- can I do groups with searchlogic and if so, how? #133

Open timfong888 opened 13 years ago

timfong888 commented 13 years ago

I have the following using searchlogic:

@todos = Todo.contact_user_id_is(current_user).
          contact_campaign_id_is(@campaign).
          current_date_lte(Date.today).
          done_date_null.
          ascend_by_current_date

I only want @todos to contain a Todo record for a single contact_id (contact_id is an attribute on Todo).

Question: how can I group so that I there is only one record per contact_id in the @todos array?