Skip to content
Advertisement

The LINQ expression could not be translated. Translation of method failed

I want to return list of ItemNos (string), even if few characters match and even if characters match in different place. For eg: If I pass in “appl” or “apole” or “daple”. I want DB to list “apple”.

Tried using levenshteinDistance: (Checking for strings with less than 2 edit).

Calling Compute method for finding edit distance – using this link as reference: “https://thedeveloperblog.com/levenshtein”

returns InvalidOperationException error:

May I know where I am going wrong. Is there a problem with how I call ‘Compute’ method in my code.

Advertisement

Answer

To compute this on locally, change to

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement