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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }