1
我想運行一個LINQ查詢是這樣的:LINQ到SQL - 自定義函數
var words = from p in db.Words
where p.Document.Corpus.Name == corpus
//where LevenshteinDistance(p.Text.ToCharArray(), word.ToCharArray()) < threshold
select p;
但是,如果我把在「編輯距離」功能,在那裏它會產生一個錯誤:
NotSupportedException: Method 'Char[] ToCharArray()' has no supported translation to SQL.
有沒有正確的方法來做到這一點?