Hello !!
I am new in JPA / ObjectDB development and I have many questions:
2. Object creation
I created a class named EBResult which looks like this:
@Entity(name="RESULT") public class EBResult extends Pojo implements Serializable{.....
In ObjectDB-explorer (which is part of ObjectDB library) I expected to see an object named "RESULT" due to class annotation @Entity(name="RESULT"). Instead I see following:
2.1. Why? Is the @Entity(name="RESULT") ignored by ObjectDB?
2.2. Is the annotation @Entity(name="RESULT") relevant for ObjectDB in any way?