排查 LINQ to Entities 中的「ToString() 方法無法辨識」錯誤
使用LINQ to Entities 時,您可能會遇到錯誤「LINQ to Entities 無法辨識方法'System.String ToString()'方法。」發生這種情況是因為LINQ to Entities 很難將ToString()
方法轉換為與資料庫相容的查詢。 解決方案包括避免在 LINQ 查詢中直接使用 ToString()
。
這是解決此問題的修改後的程式碼範例:
<code class="language-csharp">using (var context = new Context()) { // ... foreach (var item in collection) { string strItem = item.Key.ToString(); // Assign ToString() result to a variable IQueryable<entity> pages = from p in context.pages where p.Serial == strItem select p; foreach (var page in pages) { DataManager.AddPageToDocument(page, item.Value); } } Console.WriteLine("Done!"); Console.Read(); }</code>
透過將 item.Key.ToString()
的結果預先分配給 strItem
變量,我們繞過了翻譯問題。 where
子句現在使用字串文字,LINQ to Entities 提供者可以有效地處理該字串。
替代方法:利用 SqlFunctions
實體框架提供SqlFunctions
幫助器類,提供特定於資料庫的功能。 這為此類情況提供了更優雅的解決方案。 SqlFunctions.StringConvert
方法允許在資料庫查詢本身內進行轉換。
以下是實施此解決方案的方法:
<code class="language-csharp">using (var context = new Context()) { // ... foreach (var item in collection) { IQueryable<entity> pages = from p in context.pages where SqlFunctions.StringConvert((double?)p.Serial) == item.Key.ToString() //Note the cast to (double?) if needed select p; foreach (var page in pages) { DataManager.AddPageToDocument(page, item.Value); } } Console.WriteLine("Done!"); Console.Read(); }</code>
這種方法將字串轉換保留在資料庫查詢中,提高了效率並避免了翻譯錯誤。請注意,SqlFunctions.StringConvert
通常需要將資料庫欄位轉換為適當的類型(例如,如果 (double?)p.Serial
是數字類型,則為 p.Serial
)。 根據需要調整轉換以符合您的資料庫架構。 通常首選此方法,以獲得更好的效能和更清晰的程式碼。
以上是如何解決'LINQ to Entities 無法辨識方法'System.String ToString()'方法”異常?的詳細內容。更多資訊請關注PHP中文網其他相關文章!