Example #1
0
        public DDOperationCollection FetchByQuery(Query qry)
        {
            DDOperationCollection coll = new DDOperationCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Example #2
0
        public DDOperationCollection FetchAll()
        {
            DDOperationCollection coll = new DDOperationCollection();
            Query qry = new Query(DDOperation.Schema);

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