如何在 Linq to Entity 中使用 N'' 例如在 T-SQL 中我们有以下代码:
select *from students where name=N'سیروان عفیفی'
我有这个代码:
var query = from p in dbContext.Students
where p.Name == "سیروان عفیفی"
select p;
我如何使用 Linq to Entity 做到这一点?
我发现了这个 :
var query = (from p in dbContext.Students
where p.Name == EntityFunctions.AsNonUnicode("سیروان عفیفی")
select p);
但它不起作用。
谢谢。