コード例 #1
0
 public DmucNhatkiKedonCollection FetchAll()
 {
     DmucNhatkiKedonCollection coll = new DmucNhatkiKedonCollection();
     Query qry = new Query(DmucNhatkiKedon.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #2
0
 public DmucNhatkiKedonCollection FetchByQuery(Query qry)
 {
     DmucNhatkiKedonCollection coll = new DmucNhatkiKedonCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }