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

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

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