如何查询整数列中的“开头为”在实体框架中?

发布于 2024-12-09 05:48:55 字数 361 浏览 0 评论 0原文

我有一列在 EF(代码优先)中定义为整数。我想使用“开头为”来搜索它。现在,我可以这样做:

Where(x => SqlFunctions.StringConvert((double)x.AccountNumber).StartsWith(searchTerm))

但是,SqlFunctions.StringConvert() 被转换为 T-SQL 函数 STR(),该函数会向左填充结果,原因如下:超出了我的理解范围。

另外,我无法使用 string.TrimStart() 因为实体框架不支持它。

有人可以提供帮助吗?

I have a column that's defined as an integer in EF (Code First). I want to search it using "starts with." Now, I can do this:

Where(x => SqlFunctions.StringConvert((double)x.AccountNumber).StartsWith(searchTerm))

However, SqlFunctions.StringConvert() gets translated to the T-SQL function STR(), which left-pads the result for reasons which are beyond my comprehension.

Also, I can't use string.TrimStart() because it's not supported by the Entity Framework.

Can anyone lend any help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怀中猫帐中妖 2024-12-16 05:48:55

Trim()TrimStart() 在 LINQ to Entities 中工作,因此您可以使用:

Where(x => SqlFunctions.StringConvert((double)x.AccountNumber)
    .TrimStart().StartsWith(searchTerm))

TrimStart 转换为 LTRIM在 SQL 中。例如,使用 searchTerm = 123 您会得到如下内容:

WHERE LTRIM(STR( CAST( [Extent1].[AccountNumber] AS float))) LIKE N'123%'

Trim() and TrimStart() work in LINQ to Entities, so you can use:

Where(x => SqlFunctions.StringConvert((double)x.AccountNumber)
    .TrimStart().StartsWith(searchTerm))

TrimStart translates into LTRIM in SQL. With searchTerm = 123 for example you get something like:

WHERE LTRIM(STR( CAST( [Extent1].[AccountNumber] AS float))) LIKE N'123%'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文