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

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

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