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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #3
0
        public TTestgroupListCollection FetchByID(object TestGroupId)
        {
            TTestgroupListCollection coll = new TTestgroupListCollection().Where("TestGroup_ID", TestGroupId).Load();

            return(coll);
        }