I'm trying to use a generic custom collection interface (to support injection with Microsoft Patterns and Practices Unity) in a class O/R mapped with iBATIS.NET. Does anyone know if this ...
I have a domain object which represents a 1:n relationship between database tables.
public class ObservationWithData { private Observation observation; private Map<Integer,ElementValue> elementValues; // accessor ...