Suppose that in legacy schema,that you are working on getting Cayenne to work with, you aren't keeping all the information about user with the user's main information in the users table, but in a separate table.
For example: <<table users>> id firstname lastname <<table accounts>> user_id <<PK>><<FK>> username password email In my domain I wish to have User model with all properties firstname,lastname, username,email,password without create class model related to accounts table and relative association. Is there a way to do this with Cayenne ? can someone please show me a xml example?
