public RisEstudioFuenteRecoleccionDatoCollection FetchByQuery(Query qry) { RisEstudioFuenteRecoleccionDatoCollection coll = new RisEstudioFuenteRecoleccionDatoCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public RisEstudioFuenteRecoleccionDatoCollection FetchAll() { RisEstudioFuenteRecoleccionDatoCollection coll = new RisEstudioFuenteRecoleccionDatoCollection(); Query qry = new Query(RisEstudioFuenteRecoleccionDato.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public RisEstudioFuenteRecoleccionDatoCollection FetchByID(object IdEstudioFuenteRecoleccionDatos) { RisEstudioFuenteRecoleccionDatoCollection coll = new RisEstudioFuenteRecoleccionDatoCollection().Where("idEstudioFuenteRecoleccionDatos", IdEstudioFuenteRecoleccionDatos).Load(); return(coll); }