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

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

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