Yes, you need to link the Obj* things to the Db* things by name, both the entities and the attributes.
On Mon, Dec 12, 2011 at 9:03 AM, Mike Kienenberger <[email protected]>wrote: > I can't remember the exact details, but you might need (prefix + "." + > id) instead of (id) > > On Mon, Dec 12, 2011 at 2:50 AM, Kevin Meyer - KMZ <[email protected]> > wrote: > > DbAttribute dbAttribute = new DbAttribute(id, > java.sql.Types.INTEGER, dbEntity); > > dbEntity.addAttribute(dbAttribute); > > + // dot-separated path that starts in the root DbEntity > that maps to this attribute's ObjEntity and spans zero or more > relationships, always ending in a DbAttribute name. > + objAttribute.setDbAttributePath(id); > > > > > ObjAttribute objAttribute = new ObjAttribute(id, type, > objEntity); >
