molgenis / molgenis-legacy

The MOLGENIS Software generator tool for creating Dynamic Software Infrastructure used in the Life Sciences
http://www.molgenis.org
20 stars 19 forks source link

Datatype generator get mref does not work (JDBC) #156

Closed dennishendriksen closed 11 years ago

dennishendriksen commented 11 years ago

Example:

Panel p = ... p.setIndividuals(iList); db.add(p); //FAIL because the individual references are not returned when using p.getIndividuals_Name()

mswertz commented 11 years ago

Can you please elaborate a bit. Do you mean for example:

List iList = .... db.add(iList); //ok

Panel p = ... p.setIndividuals(iList); db.add(p); //FAIL because the individual referenceas are not returned when using p.getIndividuals_Name()

dennishendriksen commented 11 years ago

clarified title and added (Morris his) example