Error in create Entity Attribute

Hi,
I am new one. I have just created new entity attribute as manual but occur error: [ Validation error
Entity attribute should have a name written in camelCase naming convention] . I already change some name in comment but still error validation (see detail in attach picture file).
I am using: Java 8, Studio 2.1.4, Plat form 6.1.5, PostgreSQL database.

Please help me for check.

Thanks,

Cuba_error_entity_attribute

Hi,
I change name to lowercase --> it OK. So lowercase is must be following?
Thanks,

Hi Henry,

Java’s convention for attribute names is camelCase: Code Conventions for the Java Programming Language: 9. Naming Conventions
This is why studio enforces it (although it’s not technically required).

So instead of “STAFF_NAME” write “staffName”. For database columns another convention is used: camelCase is translated to CAMEL_CASE. I hope this does not confuse even more :slight_smile:

Bye,
Mario

Hi Mario,
I got it. Thanks so much!

Regard,
Henry