In rails 3, I have accounts and users, it looks like this:
class Account < ActiveRecord::Base
has_one :owner, :class_name => "User", :dependent => :destroy
end
I have something like this but it doesn't work, I want to join on the owner association and order and what not by it:
Account.includes(:owner).where(["owner.email = ?", "[email protected]"])
What's the correct way of going about this? Thanks.
The condition should use the table_name