1
vote
SQL in Rails - Chaining “AND”
I'm going to assume that you're not really storing the word "No" in your database to track true/false. If you're using a boolean or bit, try this.
@unreadmessages = Message.find(:a …
9
votes
when to ditch active record?
It's more important to be pragmatic than to worry about maintaining "Rails purity." I love named scopes, associations, and all of the magic that goes with them. Of course, I prefer those to running …
7
votes
how do I write that join query with ActiveRecord?
The assumption here is that you have something that looks like this:
class Band < ActiveRecord::Base
has_many :memberships
has_many :users, :through => :memberships
end
c …
