Exemplo n.º 1
0
        public ActionResult List(string levelGroupId)
        {
            using (var db = new XkSystem.Models.DbContext())
            {
                var vm = new Models.ExamLevel.List();

                var tb = from p in db.Table <Exam.Entity.tbExamLevel>()
                         where p.tbExamLevelGroup.Id == vm.LevelGroupId
                         select p;

                if (string.IsNullOrEmpty(vm.SearchText) == false)
                {
                    tb = tb.Where(d => d.ExamLevelName.Contains(vm.SearchText));
                }

                vm.ExamLevelList = (from p in tb
                                    orderby p.No
                                    select p).ToList();
                return(View(vm));
            }
        }
Exemplo n.º 2
0
 public ActionResult List(Models.ExamLevel.List vm)
 {
     return(Code.MvcHelper.Post(null, Url.Action("List", new { searchText = vm.SearchText })));
 }