Hi,
I have a habtm relationship between ‘Posts’ and ‘Tags’ and am trying to
get a list of Posts that have multiple tags. Something like:
@posts = Posts.find_posts_with_tag_ids[1, 3, 5]
Is this catered for in ActiveRecord or should I write my own SQL
statement?
Thanks,
GiantCranes