public Xml2917Collection FetchByQuery(Query qry) { Xml2917Collection coll = new Xml2917Collection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public Xml2917Collection FetchAll() { Xml2917Collection coll = new Xml2917Collection(); Query qry = new Query(Xml2917.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public Xml2917Collection FetchByID(object IdXML2) { Xml2917Collection coll = new Xml2917Collection().Where("ID_XML2", IdXML2).Load(); return(coll); }