Joined: Tue Dec 08, 2009 2:39 pm Posts: 3
|
I have the following class structure. Would really appreciate if someone can help me with the mappings. Class A { B btype; static class B { List<C> values; List<C> getValues(); } } I need to Map Class A to table_A and the List<C> to table_C with one-to-many from table_A to table_C.
I can create the mappings for Class A and the List if the list was directly contained in the Class A. Since the list is contained in static Class B, I can't figure out how to do this.
Would really appreciate some help;
|
|