4
संबंध के माध्यम से has_many से अद्वितीय रिकॉर्ड कैसे प्रदर्शित करें?
मैं सोच रहा हूँ कि Rails3 में संबंध के माध्यम से 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 …