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

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

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

            return(coll);
        }