Beispiel #1
0
        //获得结果集
        public virtual IList GetListByQuery()
        {
            IList ilist = null;

            try
            {
                _daoManager.OpenConnection();
                Hashtable map = new Hashtable();
                ilist = dao.GetListByQuery(map);
            }
            catch (Exception e)
            {
                System.Diagnostics.Debug.Write(e.Message);
            }
            finally
            {
                _daoManager.CloseConnection();
            }
            return(ilist);
        }
Beispiel #2
0
        //获得结果集
        public virtual IList GetListByQuery()
        {
            Hashtable map = new Hashtable();

            return(dao.GetListByQuery(map));
        }