Fix for #102 - When using @Transient along with @Formula I'm not seeing any values in the field.

This commit is contained in:
Rob Bygrave
2014-05-14 23:35:15 +12:00
parent 2055349d76
commit fcbedda597
3 changed files with 13 additions and 1 deletions
@@ -56,7 +56,7 @@ public class SqlBeanLoad {
public Object load(BeanProperty prop) throws SQLException {
if (!rawSql && prop.isTransient()) {
if (!rawSql && !prop.isLoadProperty()) {
return null;
}