コード例 #1
0
 public DmucGoikhamKiemdinhCollection FetchAll()
 {
     DmucGoikhamKiemdinhCollection coll = new DmucGoikhamKiemdinhCollection();
     Query qry = new Query(DmucGoikhamKiemdinh.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #2
0
 public DmucGoikhamKiemdinhCollection FetchByQuery(Query qry)
 {
     DmucGoikhamKiemdinhCollection coll = new DmucGoikhamKiemdinhCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #3
0
 public DmucGoikhamKiemdinhCollection FetchByID(object IdGoi)
 {
     DmucGoikhamKiemdinhCollection coll = new DmucGoikhamKiemdinhCollection().Where("id_goi", IdGoi).Load();
     return coll;
 }