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

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

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

            return(coll);
        }