property
name ="someCoolName"
column="columnNameFromBD"
type ="boolean";
Then I can reference this value like this: prc.usuario.getSomeCoolName() or prc.usuario.getColumnNameFromBD()
That makes a problem if then i do have another property whit the name that matchs the colunm name:
property
name ="activoSN"
column="Activo"
type ="boolean";
property
name ="activo"
column="Active"
type ="boolean";
Here calling prc.usuario.setActivo(true) will try to update the first, not the supposed seccond property
Then I can reference this value like this:
prc.usuario.getSomeCoolName()orprc.usuario.getColumnNameFromBD()That makes a problem if then i do have another property whit the name that matchs the colunm name:
Here calling
prc.usuario.setActivo(true)will try to update the first, not the supposed seccond property