コード例 #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);
        }
コード例 #3
0
        public TTestInfoCollection FetchByID(object TestId)
        {
            TTestInfoCollection coll = new TTestInfoCollection().Where("Test_ID", TestId).Load();

            return(coll);
        }