示例#1
0
 public CatLinkCollection FetchAll()
 {
     CatLinkCollection coll = new CatLinkCollection();
     Query qry = new Query(CatLink.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
示例#2
0
 public CatLinkCollection FetchByQuery(Query qry)
 {
     CatLinkCollection coll = new CatLinkCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
示例#3
0
 public CatLinkCollection FetchByID(object CatLinkID)
 {
     CatLinkCollection coll = new CatLinkCollection().Where("CatLinkID", CatLinkID).Load();
     return coll;
 }