コード例 #1
0
        public DmucKieudmucCollection FetchByQuery(Query qry)
        {
            DmucKieudmucCollection coll = new DmucKieudmucCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #2
0
        public DmucKieudmucCollection FetchAll()
        {
            DmucKieudmucCollection coll = new DmucKieudmucCollection();
            Query qry = new Query(DmucKieudmuc.Schema);

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