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

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

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