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