Esempio n. 1
0
        public LogCollection FetchByQuery(Query qry)
        {
            LogCollection coll = new LogCollection();

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

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