示例#1
0
        public RisEstudioFuenteRecoleccionDatoCollection FetchByQuery(Query qry)
        {
            RisEstudioFuenteRecoleccionDatoCollection coll = new RisEstudioFuenteRecoleccionDatoCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#2
0
        public RisEstudioFuenteRecoleccionDatoCollection FetchAll()
        {
            RisEstudioFuenteRecoleccionDatoCollection coll = new RisEstudioFuenteRecoleccionDatoCollection();
            Query qry = new Query(RisEstudioFuenteRecoleccionDato.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#3
0
        public RisEstudioFuenteRecoleccionDatoCollection FetchByID(object IdEstudioFuenteRecoleccionDatos)
        {
            RisEstudioFuenteRecoleccionDatoCollection coll = new RisEstudioFuenteRecoleccionDatoCollection().Where("idEstudioFuenteRecoleccionDatos", IdEstudioFuenteRecoleccionDatos).Load();

            return(coll);
        }