3
has_many'ye kayıtlar nasıl eklenir: raylardaki ilişkilendirme yoluyla
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 İçin Agentsmodele nasıl eklerim Customer? En iyi yol bu mu? Customer.find(1).agents.create(customer_id: 1, house_id: 1) Yukarıdakiler konsoldan iyi çalışıyor, ancak …