Why can't dynamic linq include first character searching?

85 Views Asked by At

I started to use Dynamic LINQ. I don't understand why below code can't include first character of search variable when searching?

query = query.Where($"{orderColumn}.Contains(@0)", search);

For example; word: istanbul, When I search "stanbul", It is okay, it gets. But When I search "istan", it doesn't get.

Could you anyone help me?

0

There are 0 best solutions below