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

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

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