vote up 1 vote down star

Hello I have no good title for this question, but my problem is to set a conditon for my sub-table in rails I have a model named "users" and another named "hours", hours is set to "belongs_to :users" and the users-model has "has_many :hours"

But my problem is when I try to fetch the users, but just the hours added this month. I want this to happen only in the Index action.

How can I set a condition for my sub table?

flag

2 Answers

vote up 1 vote down check
class SomeController
  def index
    Hours.all(:include => [:user], :conditions => "added_this_month is null")
  end
end
link|flag
Almost what I wanted, but is it posible to return the users who haven't any hours also? (JOIN LEFT?) – Terw Nov 1 at 15:29
Solution: stackoverflow.com/questions/1509692/… – Terw Nov 1 at 15:46
Oh well... just edited anyway. Since I noticed you were interested more in hours vs. users. – rnicholson Nov 1 at 15:48
vote up 0 vote down

has_many can use :conditions

has_many :hours, :conditions => ...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.