Hi! is it possible to either
Example: We have an Entity named Order, which has a field Setpoint of structure type Weight:
The Order entity is mapped to table Order with columns Setpoint.Value and Setpoint.Unit. We are exchanging data via this table with our customer (Import/Export). Unfortunately, the JDBC driver of our customer does not support column names with a dot. There is no option to put them in square brackets. Therefore, I want to rename the Setpoint.Value and Setpoint.Unit columns to Setpoint_Value and Setpoint_Unit. |