Esempio n. 1
0
        public TTestInfoDeletedCollection FetchByQuery(Query qry)
        {
            var coll = new TTestInfoDeletedCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Esempio n. 2
0
        public TTestInfoDeletedCollection FetchAll()
        {
            var coll = new TTestInfoDeletedCollection();
            var qry  = new Query(TTestInfoDeleted.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Esempio n. 3
0
        public TTestInfoDeletedCollection FetchByID(object Id)
        {
            TTestInfoDeletedCollection coll = new TTestInfoDeletedCollection().Where("Id", Id).Load();

            return(coll);
        }