gpt4 book ai didi

c# - 如何在 Linq to Entity 中为非 Unicode 字符使用 N' '?

转载 作者:太空狗 更新时间:2023-10-29 20:42:06 28 4
gpt4 key购买 nike

我如何在 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 执行此操作?

我找到了 this :

 var query = (from p in dbContext.Students
where p.Name == EntityFunctions.AsNonUnicode("سیروان عفیفی")
select p);

但它不起作用。

谢谢。

最佳答案

如果您的列类型以 'n' 开头,例如 nvarcharnchar,那么您不需要在首先是你的值(value)。

我已经尝试了以下方法并且它适用于 nvarchar

x.Name == "سیروان عفیفی"

关于c# - 如何在 Linq to Entity 中为非 Unicode 字符使用 N' '?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12892191/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com