mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#1449 Fix for failing lazy fetch when logical property name starts with underscore
This commit is contained in:
@@ -187,6 +187,6 @@ public abstract class DeployParser {
|
||||
}
|
||||
|
||||
private boolean isWordStart(char ch) {
|
||||
return Character.isLetter(ch);
|
||||
return Character.isLetter(ch) || ch == UNDERSCORE;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user