Community
Participate
Working Groups
1 I need Entity record to define relationships between entity 2. Define an Entity record: record OrderHeader type Entity{@table{name = "Orders"}} order_id int {@Id}; // Foreign key to owning Customer {@JoinColumn {name="cust_id"}}; cust_id int{@ManyToOne}; price float; end 3. Editor has inline errors and related Java class is not generated as expected.
Tim had said not all functionality would be in 0.7.0, but that list was never defined. I have updated 355573 to include a list of what is supported for 0.7.0 and what is future. @ManyToMany, @ManyToOne, @OneToMany, @OneToOne, @SecondaryTables are future.
But even basic Entity record definition cannot be generated, from my prospective, Entity definition without association should be generated
I fixed generation so when you use an entity type there are no compile errors. Entity is only required for associations and associations are not supported for 070.
close it