4
Bir has_many'den ilişki yoluyla benzersiz kayıtlar nasıl görüntülenir?
Bir has_many'den benzersiz kayıtları Rails3'teki ilişki aracılığıyla görüntülemenin en iyi yolunun ne olduğunu merak ediyorum. Üç modelim var: class User < ActiveRecord::Base has_many :orders has_many :products, :through => :orders end class Products < ActiveRecord::Base has_many :orders has_many :users, :through => :orders end class Order < ActiveRecord::Base belongs_to :user, :counter_cache => …