现在我正在使用Rails AR方法更新表中的一堆属性。
RaceWeek.current_week.each { |r| r.update_attributes(:games_won => 0, :games_lost => 0) }
我更愿意在一次交易中更有效地做到这一点。怎么办呢?
答案 0 :(得分:0)
使用update_all
:
<model/association>.update_all("games_won = 0, games_lost = 0" )
聚苯乙烯。使用上面的某种形式,因为我不知道RaceWeek
与current_week
的关系是什么。