博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

指定查询条数查询

Posted on 2011-01-24 15:46  傷ロ丄の盐ㄜ  阅读(101)  评论(0编辑  收藏  举报

        /// <summary>
        /// 获取指定页码10条应用列表(每次查询10条数据)
        /// </summary>
        /// <param name="index">页码</param>
        /// <returns></returns>
        public IList<AppSystem> GetAppListByIndex(int index)
        {
            string startIndex = ((index - 1) * 10 + 1).ToString();
            string endIndex = (index * 10).ToString();

            return Select<string>("SelectByIndex", startIndex,endIndex);
        }