collection « ibatis « Java Database Q&A





1. Using iBATIS.NET with generic custom collection interfaces and Unity    stackoverflow.com

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 ...

2. How can I efficiently map complex collection properties in ibatis 2.3.4    stackoverflow.com

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 ...