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?