Ejemplo n.º 1
0
        public TTestgroupListCollection FetchByQuery(Query qry)
        {
            TTestgroupListCollection coll = new TTestgroupListCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public TTestgroupListCollection FetchAll()
        {
            TTestgroupListCollection coll = new TTestgroupListCollection();
            Query qry = new Query(TTestgroupList.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 3
0
        public TTestgroupListCollection FetchByID(object TestGroupId)
        {
            TTestgroupListCollection coll = new TTestgroupListCollection().Where("TestGroup_ID", TestGroupId).Load();

            return(coll);
        }