首页 > 后端开发 > C++ > 如何在 LINQ to Entities 查询中将 Int 转换为 String?

如何在 LINQ to Entities 查询中将 Int 转换为 String?

Linda Hamilton
发布: 2025-01-25 18:26:10
原创
752 人浏览过

How to Convert Int to String in LINQ to Entities Queries?

在 LINQ to Entities 查询中将整数转换为字符串:问题排查和解决方案

在 LINQ to Entities 查询中尝试将整数转换为字符串时,可能会遇到错误。此问题主要是因为不支持隐式类型转换。

在第一个代码片段中:

<code class="language-csharp">var items = from c in contacts
            select new ListItem
            {
                Value = c.ContactId, //无法将类型“int”(ContactId)隐式转换为类型“string”(Value)。
                Text = c.Name
            };</code>
登录后复制

编译器会提示错误,因为它无法将整数 ContactId 隐式转换为字符串 Value。

在 LINQ to Entities 中使用 ToString() 显式将整数转换为字符串也会失败:

<code class="language-csharp">var items = from c in contacts
            select new ListItem
            {
                Value = c.ContactId.ToString(), //抛出异常:ToString 在 linq to entities 中不受支持。
                Text = c.Name
            };</code>
登录后复制

解决方案:

为了解决这个问题,可以使用 EF v4 中的 SqlFunctions.StringConvert 函数。但是,由于没有整数的重载,可以先将其转换为双精度浮点数或十进制数:

<code class="language-csharp">var items = from c in contacts
            select new ListItem
            {
                Value = SqlFunctions.StringConvert((double)c.ContactId).Trim(),
                Text = c.Name
            };</code>
登录后复制

这种方法成功地将整数 ContactId 转换为字符串,并允许您继续进行 LINQ to Entities 查询。

以上是如何在 LINQ to Entities 查询中将 Int 转换为 String?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板