Please see this example
SELECT *
FROM Item
WHERE (PartNumber LIKE 'KEA 12201 N%')
Result = 0 rows
SELECT *
FROM Item
WHERE (PartNumber LIKE 'KEA%12201%N%')
Result = matching rows
Here space will replace with any character .then it will show the result
same thing I need to do in linq with lamda expression
ex:- List.where(u => u.PartNumber.StartsWith(partNumber))
but this will show no result while space contain search word
Please help me.