robospice
robospice copied to clipboard
Foreign collection for nested entities
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.