4
সম্পর্কের মাধ্যমে কীভাবে একটি has_many থেকে অনন্য রেকর্ড প্রদর্শন করবেন?
আমি বিস্মিত হয়েছি, রেল 3-এর সম্পর্কের মধ্য দিয়ে একটি has_many থেকে অনন্য রেকর্ড প্রদর্শন করার সর্বোত্তম উপায় কী। আমার কাছে তিনটি মডেল রয়েছে: 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 < …