robospice icon indicating copy to clipboard operation
robospice copied to clipboard

Foreign collection for nested entities

Open AlexandrSalin opened this issue 9 years ago • 0 comments

hi

i have next structure

class A { @DatabaseField(foreign = true, autorefresh = true, autocrteate = true) private B subEntity; }

class B { @ForeihnCollectionField(eager = true) private Collection<"C"> listSubEntities; }

class C { @DatabaseField(foreign = true, columnName = "parent") private B parent }

why reobospice persister InDatabasePersister create A and B, but don't create list of C? for this example all column name assigned and all getters and setters exists.

AlexandrSalin avatar Jul 22 '15 11:07 AlexandrSalin