3
has_many में रिकॉर्ड कैसे जोड़ें: रेल में एसोसिएशन के माध्यम से
class Agents << ActiveRecord::Base belongs_to :customer belongs_to :house end class Customer << ActiveRecord::Base has_many :agents has_many :houses, through: :agents end class House << ActiveRecord::Base has_many :agents has_many :customers, through: :agents end मैं Agentsमॉडल के लिए कैसे जोड़ूँ Customer? क्या यह सबसे अच्छा तरीका है? Customer.find(1).agents.create(customer_id: 1, house_id: 1) ऊपर कंसोल …