public manytoone()
 {
     this.uniqueField = false;
     this.updateField = true;
     this.insertField = true;
     this.optimisticlockField = true;
     this.notfoundField = notFoundMode.exception;
     this.embedxmlField = true;
 }
 public onetomany()
 {
     this.notfoundField = notFoundMode.exception;
     this.embedxmlField = true;
 }
 public manytomany()
 {
     this.embedxmlField = true;
     this.notfoundField = notFoundMode.exception;
     this.uniqueField = false;
 }
 public keymanytoone()
 {
     this.notfoundField = notFoundMode.exception;
 }
 public manytoone()
 {
     itemsField = new List<object>();
     metaField = new List<meta>();
     uniqueField = false;
     updateField = true;
     insertField = true;
     optimisticlockField = true;
     notfoundField = notFoundMode.exception;
     embedxmlField = true;
 }
 public manytomany()
 {
     filterField = new List<filter>();
     itemsField = new List<object>();
     metaField = new List<meta>();
     embedxmlField = true;
     notfoundField = notFoundMode.exception;
     uniqueField = false;
 }
 public keymanytoone()
 {
     columnField = new List<Column>();
     metaField = new List<meta>();
     notfoundField = notFoundMode.exception;
 }