使用攔截器自動修剪實體框架中的Char(N) 值
實現對特定char(N) 檢索到的值的自動修剪實體框架中的列,您可以利用攔截器。這種方法對於 EF 6.1 版本特別有效。
攔截器方法
根據 Microsoft Entity Framework 專案經理 Rowan Miller 的建議,攔截器為此提供了解決方案設想。目標是自動修剪模型中所有字串屬性的尾隨空格而不影響效能。
以下是StringTrimmerInterceptor 的相關程式碼:
using System.Data.Entity.Core.Metadata.Edm; using System.Data.Entity.Infrastructure.Interception; namespace FixedLengthDemo { public class StringTrimmerInterceptor : IDbCommandTreeInterceptor { // ... (implementation details) ... } }
要啟用攔截器,請新增以下內容設定類別到您的專案:
using System.Data.Entity; namespace FixedLengthDemo { public class MyConfiguration : DbConfiguration { public MyConfiguration() { AddInterceptor(new StringTrimmerInterceptor()); } } }
透過實作此攔截器,EF 將自動修剪從特定的檢索到的值char(N) 列,無需在LINQ to Entities查詢中手動修剪。
以上是實體框架攔截器如何自動修剪 Char(N) 值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!