Beispiel #1
0
 public CatLinkCollection FetchAll()
 {
     CatLinkCollection coll = new CatLinkCollection();
     Query qry = new Query(CatLink.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Beispiel #2
0
 public CatLinkCollection FetchByQuery(Query qry)
 {
     CatLinkCollection coll = new CatLinkCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }