Any thoughts how to add a wildcard search from the line similar to sql 'like%'. in my case to get the result, exact search gives the result. I need result's which match or like based on the searchkey
List = (from x in employee 
        where x.firstname.ToUpper().Contains(searchKey.ToUpper()) 
        || x.fullname.ToUpper().Contains(searchKey.ToUpper())  
        select x)
        .Take(5);