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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }