LINQ to SQL 查询以确定值是否以数字开头
- 作者: 浮生一梦醉看红尘
- 来源: 51数据库
- 2022-12-08
问题描述
我有一个项目,我通过首字母查询用户:
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
..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;
- C#通过fleck实现wss协议的WebSocket多人Web实时聊天(附源码)
- 团队城市未满足要求:MSBuildTools12.0_x86_Path 存在
- 使用 MSBuild.exe 在发布模式下构建 C# 解决方案
- 当我发布 Web 应用程序时,AfterPublish 脚本不运行
- 构建时 T4 转换的产品仅在下一个构建中使用
- ASP.NET Core Application (.NET Framework) for Windows x64 only error in project.assets.json
- 新的 .csproj 格式 - 如何将整个目录指定为“链接文件"到子目录?
- 如何将条件编译符号(DefineConstants)传递给 msbuild
- MSBuild 支持 Visual Studio 2017 RTM 中的 T4 模板
- NuGet 包还原找不到包,没有源
