コード例 #1
0
        public TResultLotCollection FetchByQuery(Query qry)
        {
            TResultLotCollection coll = new TResultLotCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #2
0
        public TResultLotCollection FetchAll()
        {
            TResultLotCollection coll = new TResultLotCollection();
            Query qry = new Query(TResultLot.Schema);

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