I need to find customer names that includes special Turkish characters. For example, Customer
table is :
Id Name Surname
--------------------
1 Şağbüz Akarca
2 Üleykö Pancar
I want to find the record with Id 1 with this linq query :
context.Customers.Select(c => c.Name.Contains('Sagbuz'));
Another example :
context.Customers.Select(c => c.Name.Contains('Uleyko'));
This query is converted to this:
SELECT * FROM Customer WHERE Name LIKE N'Sagbuz'
That returns no row found. I couldn't find the way to achieve this.