LINQ to SQL query to determine if value starts with numeric(LINQ to SQL 查询以确定值是否以数字开头)
问题描述
我有一个项目,我通过首字母查询用户:
I have a project where I query users by first letter:
repository.GetAll().Where(q => q.BrukerIdent.StartsWith(letter.ToString())).ToList();
..where repository.GetAll() 返回一个 IQueryable,BrukerIdent 是一个包含用户名的字符串,letter 是一个传入的字符值.这很好用,除了我还想获得以数字开头的用户.而且我不想按单独的数字排序.
..where repository.GetAll() returns an IQueryable<Bruker>, BrukerIdent is a string that contains the username, and letter is a char-value coming in. This works perfectly, except that I also want to get users that starts with digits. And I don't want to sort by separate digits.
我的脑海里呼喊着 StartsWith("d") 但据我所知,它不是这样工作的.我也想过做一个 10 路 OR 子句,但这看起来像意大利面条,我不确定效率.
My mind yells for a StartsWith("d") but as far as I have found out it doesn't work this way. I have also thought of doing a 10-way OR clause, but that would look like spaghetti, and I'm not sure of the efficiency.
有没有什么正确"的方法可以做到这一点?
Is there any "right" way to do it like this?
推荐答案
repository.GetAll().Where(q => Char.IsNumber(q.BrukerIdent[0]))
MSDN
var numbers = Enumerable
.Range(0, 10)
.Select(i => i.ToString(CultureInfo.InvariantCulture));
// var numbers = new[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 );
// var numbers = HashSet<int> { ... };
var q = from b in repository.GetAll()
where numbers.Contains(b.BrukerIdent.FirstOrDefault())) //[0]
select b;
这篇关于LINQ to SQL 查询以确定值是否以数字开头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:LINQ to SQL 查询以确定值是否以数字开头
基础教程推荐
- C# 从 List<List<int>> 中删除重 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- WPF 模态进度窗口 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
