Ejemplo n.º 1
0
        public Xml2917Collection FetchByQuery(Query qry)
        {
            Xml2917Collection coll = new Xml2917Collection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public Xml2917Collection FetchAll()
        {
            Xml2917Collection coll = new Xml2917Collection();
            Query             qry  = new Query(Xml2917.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 3
0
        public Xml2917Collection FetchByID(object IdXML2)
        {
            Xml2917Collection coll = new Xml2917Collection().Where("ID_XML2", IdXML2).Load();

            return(coll);
        }