On Apr 17, 2010, at 10:30 PM, Bob Smith wrote:

I'm trying to get records from a has_many that are only from this
year.

has_many :visit, :conditions => "year = #[email protected]}", :dependent
=> :destroy

This has trouble. it thinks @today is null.. Any other ideas?


Don't you want :visits (with an s?)

has_many :visits, :conditions => "year = SQL_FUNCTION_THAT_RETURNS_CURRENT_YEAR",.....

Replacing "SQL_FUNCTION...YEAR" with whatever works for your database.

If you want to specify the year, look into using a lambda for the conditions...

-philip


--
You received this message because you are subscribed to the Google Groups "Ruby on 
Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to