Using collation in Linq to Sql(在 Linq to Sql 中使用排序规则)
本文介绍了在 Linq to Sql 中使用排序规则的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
想象一下这个 sql 查询
Imagine this sql query
select * from products order by name collate Persian_100_CI_AI asc
现在使用 Linq:
product = DB.Products.OrderBy(p => p.name); // what should I do here?
如何应用排序规则?
推荐答案
现在可以使用 整理 功能.
This is now possible with EF Core 5.0 using the collate function.
在您的示例中,代码为:
In your example the code would be:
product = DB.Products.OrderBy(p => EF.Functions.Collate(p.name, "Persian_100_CI_AI"));
这篇关于在 Linq to Sql 中使用排序规则的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
织梦狗教程
本文标题为:在 Linq to Sql 中使用排序规则


基础教程推荐
猜你喜欢
- 如果条件可以为空 2022-01-01
- 重新排序 WPF TabControl 中的选项卡 2022-01-01
- 更新 Visual Studio 中的 DataSet 结构以匹配新的 SQL 数据库结构 2022-01-01
- Mono https webrequest 失败并显示“身份验证或解密失败" 2022-01-01
- 获取C#保存对话框的文件路径 2022-01-01
- SonarQube C# 分析失败“不是指针的有效行偏移" 2022-01-01
- C# 9 新特性——record的相关总结 2023-04-03
- 在 VB6 或经典 ASP 中使用 .NET 2022-01-01
- 从 C# 控制相机设备 2022-01-01
- 将数据集转换为列表 2022-01-01