小编典典

在Linq中将int转换为字符串到实体的问题

c#

var items = from c in contacts
            select new ListItem
            {
                Value = c.ContactId, //Cannot implicitly convert type 'int' (ContactId) to 'string' (Value).
                Text = c.Name
            };
var items = from c in contacts
            select new ListItem
            {
                Value = c.ContactId.ToString(), //Throws exception: ToString is not supported in linq to entities.
                Text = c.Name
            };

无论如何,我能做到这一点吗?请注意,在VB.NET中使用第一个片段没有问题,它工作得很好,VB灵活,我无法适应C#的严格性!!!


阅读 293

收藏
2020-05-19

共1个答案

小编典典

使用EF v4,您可以使用SqlFunctions.StringConvert。int没有重载,因此您需要转换为双精度或十进制。您的代码最终看起来像这样:

var items = from c in contacts
            select new ListItem
            {
                Value = SqlFunctions.StringConvert((double)c.ContactId).Trim(),
                Text = c.Name
            };
2020-05-19