大致是这样的代码,但是插入不是批量的,想改成批量插入,应该怎么优好处理?请指教,感谢
Pager pager = new Pager();
List<Record> recordList = fromDaoUp.dao().query("table1", null, pager);
for (Record r : recordList) {
toDaoUp.dao().insert("table2",, r.toChain());
}