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