コード例 #1
0
 public manytoone()
 {
     this.uniqueField = false;
     this.updateField = true;
     this.insertField = true;
     this.optimisticlockField = true;
     this.notfoundField = notFoundMode.exception;
     this.embedxmlField = true;
 }
コード例 #2
0
 public onetomany()
 {
     this.notfoundField = notFoundMode.exception;
     this.embedxmlField = true;
 }
コード例 #3
0
 public manytomany()
 {
     this.embedxmlField = true;
     this.notfoundField = notFoundMode.exception;
     this.uniqueField = false;
 }
コード例 #4
0
 public keymanytoone()
 {
     this.notfoundField = notFoundMode.exception;
 }
コード例 #5
0
 public manytoone()
 {
     itemsField = new List<object>();
     metaField = new List<meta>();
     uniqueField = false;
     updateField = true;
     insertField = true;
     optimisticlockField = true;
     notfoundField = notFoundMode.exception;
     embedxmlField = true;
 }
コード例 #6
0
 public manytomany()
 {
     filterField = new List<filter>();
     itemsField = new List<object>();
     metaField = new List<meta>();
     embedxmlField = true;
     notfoundField = notFoundMode.exception;
     uniqueField = false;
 }
コード例 #7
0
 public keymanytoone()
 {
     columnField = new List<Column>();
     metaField = new List<meta>();
     notfoundField = notFoundMode.exception;
 }