/// <summary> /// 获取所有的博客列表信息 /// </summary> /// <returns></returns> public IActionResult Index(string sUserID, string sQuery, DateTime?dtStartTime, DateTime?dtEndTime, int iPageIndex, int iPageSize) { List <MyBlogTestModels.BlogEntity> bloglist = null; Hashtable has = new Hashtable(); bloglist = blogDAL.GetAllBlogList(sQuery, dtStartTime, dtEndTime, iPageIndex, iPageSize, has); return(View(bloglist)); }