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 查询以确定值是否以数字开头


- 在 LINQ to SQL 中使用 contains() 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- 使用 rss + c# 2022-01-01
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01