I want to search for strings in my db with some similarity distance algorithm like Jaro-Winkler. However EF Core cannot translate such expressions. So you cannot use an expression like below:
query.Where(x => JaroWinkler.Similarity(x.Title, someText) > 0.5);
My question is how can I implement this with EF Core? Is there any way to do this?