示例#1
0
 public LinkCollection FetchAll()
 {
     LinkCollection coll = new LinkCollection();
     Query qry = new Query(Link.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
示例#2
0
 public LinkCollection FetchByQuery(Query qry)
 {
     LinkCollection coll = new LinkCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }