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

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

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

            return(coll);
        }