示例#1
0
        public ProductDownloadMapCollection FetchByQuery(Query qry)
        {
            ProductDownloadMapCollection coll = new ProductDownloadMapCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#2
0
        public ProductDownloadMapCollection FetchAll()
        {
            ProductDownloadMapCollection coll = new ProductDownloadMapCollection();
            Query qry = new Query(ProductDownloadMap.Schema);

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