You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I query data with CommonSelectMapper.selectManyMappedRows() method, it can't map underscore to camel case automatically, I have to specify an alias for every cloumn, I think we can do something to improve this.
The way I can think of is to add a method like asCamelCase for SqlColumn class, which can convert the name of the column to camel case, and return a new SqlColumn object, what do you think?
The text was updated successfully, but these errors were encountered:
When I query data with
CommonSelectMapper.selectManyMappedRows()
method, it can't map underscore to camel case automatically, I have to specify an alias for every cloumn, I think we can do something to improve this.The way I can think of is to add a method like
asCamelCase
forSqlColumn
class, which can convert the name of the column to camel case, and return a newSqlColumn
object, what do you think?The text was updated successfully, but these errors were encountered: