Example #1
0
        public TTestgroupDtlCollection FetchByQuery(Query qry)
        {
            var coll = new TTestgroupDtlCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Example #2
0
        public TTestgroupDtlCollection FetchAll()
        {
            var coll = new TTestgroupDtlCollection();
            var qry  = new Query(TTestgroupDtl.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Example #3
0
        public TTestgroupDtlCollection FetchByID(object TestGroupId)
        {
            TTestgroupDtlCollection coll = new TTestgroupDtlCollection().Where("TestGroup_ID", TestGroupId).Load();

            return(coll);
        }