Exemplo n.º 1
0
 public LinkCollection FetchAll()
 {
     LinkCollection coll = new LinkCollection();
     Query qry = new Query(Link.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Exemplo n.º 2
0
 public LinkCollection FetchByQuery(Query qry)
 {
     LinkCollection coll = new LinkCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }