public LinkCollection FetchAll() { LinkCollection coll = new LinkCollection(); Query qry = new Query(Link.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return coll; }
public LinkCollection FetchByQuery(Query qry) { LinkCollection coll = new LinkCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return coll; }