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

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

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