示例#1
0
        public async Task <CabVM> GetCabsAsync(int pageno, int pagesize, string sterm)
        {
            CabVM model    = new CabVM();
            var   parStart = new SqlParameter("@Start", (pageno - 1) * pagesize);
            var   parEnd   = new SqlParameter("@PageSize", pagesize);

            var parSearchTerm = new SqlParameter("@SearchTerm", DBNull.Value);

            if (!(sterm == null || sterm == ""))
            {
                parSearchTerm.Value = sterm;
            }
            // setting stored procedure OUTPUT value
            // This return total number of rows, and avoid two database call for data and total number of rows
            var spOutput = new SqlParameter
            {
                ParameterName = "@TotalCount",
                SqlDbType     = System.Data.SqlDbType.BigInt,
                Direction     = System.Data.ParameterDirection.Output
            };

            model.Cabs = await db.Database.SqlQuery <CabView>("udspMstCabPaged @Start, @PageSize,@SearchTerm, @TotalCount out",
                                                              parStart, parEnd, parSearchTerm, spOutput).ToListAsync();

            model.TotalRecords = int.Parse(spOutput.Value.ToString());
            return(model);
        }
示例#2
0
 //
 // GET: /Admin/Cab/
 public ActionResult Index(int PageNo = 1, int PageSize = 10, string SearchTerm = "")
 {
     try
     {
         string   query    = "PageNo=" + PageNo + "&PageSize=" + PageSize + "&SearchTerm=" + SearchTerm;
         CabAPIVM apiModel = objAPI.GetRecordByQueryString <CabAPIVM>("cabconfig", "cabs", query);
         CabVM    model    = new CabVM();
         model.Cabs       = apiModel.Cabs;
         model.PagingInfo = new PagingInfo {
             CurrentPage = PageNo, ItemsPerPage = PageSize, TotalItems = apiModel.TotalRecords
         };
         if (Request.IsAjaxRequest())
         {
             return(PartialView("_pvCabList", model));
         }
         return(View(model));
     }
     catch (AuthorizationException)
     {
         TempData["ErrMsg"] = "Your Login Session has expired. Please Login Again";
         return(RedirectToAction("Login", "Account", new { Area = "" }));
     }
 }