public IHttpActionResult QueryHighliht(string txt) { List <EmployeeDetail> emp = new List <EmployeeDetail>(); emp = repo.Highlight(txt); return(Ok(emp)); }