本篇内容主要讲解“强制转换为值类型“System.Double”失败的原因”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“强制转换为值类型“System.Double”失败的原因”吧!
foreach (var item in entityList)
{
ChannelReportDto channelReportDto = new ChannelReportDto();
channelReportDto.Id = item.Id;
channelReportDto.YueziCenterId = item.YueziCenterId;
channelReportDto.YueziCenterName = item.YueziCenterName;
channelReportDto.ChannelName = item.ChannelName;
channelReportDto.SumProfitAmount = OrderServiceProjectresult.Where(w => w.ChannelId == item.Id && w.IsDeleted == false).Select(s => s.SumProfitAmount).Sum();
channelReportDto.SettleProfitAmount = OrderServiceProjectresult.Where(w => w.ChannelId == item.Id && w.IsSettlement == true).Select(s => s.SumProfitAmount).Sum();
channelReportDto.NoSettleProfitAmount = OrderServiceProjectresult.Where(w => w.ChannelId == item.Id && w.IsSettlement == false).Select(s => s.SumProfitAmount).Sum();
list.Add(channelReportDto);
}
这样写的时候 就报了这个错 The cast to value type 'System.Double' failed because the materialized value is null. Either the result type's generic parameter or the query must use a nullable type.
主要原因是没有适合查询条件的行 去计算,
所以改成以下写法就OK
foreach (var item in entityList)
{
ChannelReportDto channelReportDto = new ChannelReportDto();
channelReportDto.Id = item.Id;
channelReportDto.YueziCenterId = item.YueziCenterId;
channelReportDto.YueziCenterName = item.YueziCenterName;
channelReportDto.ChannelName = item.ChannelName;
channelReportDto.SumProfitAmount = OrderServiceProjectresult.Where(w => w.ChannelId == item.Id && w.IsDeleted == false).Sum(s =>(double?)s.SumProfitAmount)??0.00;
channelReportDto.SettleProfitAmount = OrderServiceProjectresult.Where(w => w.ChannelId == item.Id && w.IsSettlement == true).Sum(s => (double?)s.SumProfitAmount) ?? 0.00;
channelReportDto.NoSettleProfitAmount = OrderServiceProjectresult.Where(w => w.ChannelId == item.Id && w.IsSettlement == false).Sum(s => (double?)s.SumProfitAmount) ?? 0.00;
list.Add(channelReportDto);
}
到此,相信大家对“强制转换为值类型“System.Double”失败的原因”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。
原文链接:https://my.oschina.net/u/2494395/blog/3102204