public VgiItemsDatoCollection FetchByQuery(Query qry)
        {
            VgiItemsDatoCollection coll = new VgiItemsDatoCollection();

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

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

            return(coll);
        }