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

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

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