(!String.IsNullOrEmpty(searchString) 我现在比较的是个字符串,现在查个int型。(!String.IsNullOrEmpty相对于的int怎么比较?
 public ViewResult Index(string searchString)
        {            var students = from s in db.SJResourceReqMAS
                           select s;
            if (!String.IsNullOrEmpty(searchString))
            {
                students = students.Where(s => s.rr_re.Contains(searchString));            }            //if (searchString!= null)
            //{
            //    students = students.Where(s => s.rr_requsr.Equals(searchString));
            //}
            return View(students);
     
        }