示例#1
0
 public ActionResult List(Models.TeacherHonorType.List vm)
 {
     return(Code.MvcHelper.Post(null, Url.Action("List", new
     {
         searchText = vm.SearchText
     })));
 }
示例#2
0
 public ActionResult List()
 {
     using (var db = new XkSystem.Models.DbContext())
     {
         var vm = new Models.TeacherHonorType.List();
         var tb = db.Table <Teacher.Entity.tbTeacherHonorType>();
         if (!string.IsNullOrEmpty(vm.SearchText))
         {
             tb = tb.Where(d => d.TeacherHonorTypeName.Contains(vm.SearchText));
         }
         vm.DataList = (from p in tb
                        orderby p.No
                        select p).ToList();
         return(View(vm));
     }
 }