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