actframework / act-ebean

The ebean plugin that uses latest ebeanorm and requrie java 8 support
Apache License 2.0
2 stars 1 forks source link

EbeanDao save entity fields methods not work #13

Open thetcc opened 7 years ago

thetcc commented 7 years ago

The source code is public void save(MODEL_TYPE entity, String fields, Object... values) throws IllegalArgumentException { this.ebean().update(entity); }

public void save(Transaction tx, MODEL_TYPE entity, String fields, Object... values) throws IllegalArgumentException { this.ebean().update(entity, tx); }

fields not modified!