我在三个实体之间建立了如下活跃的记录关系 我想保持数据如下,我设法 将数据保存到事务组
class Transaction < ActiveRecord::Base
attr_accessible :reference, :transaction_group_id
belongs_to :transaction_groups
end
class TransactionGroup < ActiveRecord::Base
attr_accessible :batch_id
has_many :transactions, dependent => :destroy
end
class Batch < ActiveRecord::Base
attr_accessible :account_number, :file_name
has_many :transaction_groups
has_many :transactions , :through=>:ransaction_groups
batch = Batch.new
batch.account_number = "sessna"
batch.transaction_groups.build(:batch_id => batch.id)
end
但我无法想出通过活动记录将数据保存到Transaction实体的方法 我试过了
batch.transaction_groups.transactions.build(:transaction_group_id => batch.transaction_groups.id) #this gaves me an error
如果通过关联可用,如何保留数据?