public LUserCollection FetchByQuery(Query qry) { var coll = new LUserCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public LUserCollection FetchAll() { var coll = new LUserCollection(); var qry = new Query(LUser.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }