예제 #1
0
        public LogCollection FetchByQuery(Query qry)
        {
            LogCollection coll = new LogCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #2
0
        public LogCollection FetchAll()
        {
            LogCollection coll = new LogCollection();
            Query         qry  = new Query(Log.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }