Skip to content

column attribute creates a getter/setter #272

@rodriciru

Description

@rodriciru
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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions