Daos.ext(dao, FieldFilter.create(Topic.class, itype, true)).update(topic);
dao.update(topic);
前面的只更新某个字段,后面的更新对象,前面的效率会好一些吗?
dao.update(this.getEntityClass(), chain, cnd)