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

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

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