Exemplo n.º 1
0
        public TblVersionCollection FetchByQuery(Query qry)
        {
            var coll = new TblVersionCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public TblVersionCollection FetchAll()
        {
            var coll = new TblVersionCollection();
            var qry  = new Query(TblVersion.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 3
0
        public TblVersionCollection FetchByID(object PkIntID)
        {
            TblVersionCollection coll = new TblVersionCollection().Where("PK_intID", PkIntID).Load();

            return(coll);
        }