最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

c# - Using Entity Framework and Automapper to Roll-up Sum - Stack Overflow

programmeradmin1浏览0评论

So, here's a quick object structure that I have.

[
    {
        id
        ...
        ...
        children: [
            {
                id
                ...
                ...
                children: [
                    {
                        id
                        ...
                        ...
                        finalChild: {
                            id
                            ...
                            ...
                            someDecimal: xxx
                        }
                    }
                    ...
                    ...
                    ...
                ]
            }
            ...
            ...
            ...
        }
    }
    ...
    ...
    ...
]

I can get all of that through LINQ and Entity Framework no problem. Now, I need to flatten all of that for a new DTO I'm creating that will roll that someDecimal all the way up to the top and SUM it for all children down the line. I know I can use the SUM LINQ function, but it causes some errors. Mainly because...finalChild could, potentially, be null. In addition, the lambda expression that I'm trying to build warns me that it would bind it 300 times to do so.

Is there a better way to do this? Maybe I should be doing it outside of an Automapper?

Here's the line of code that's giving me trouble:

.ForMember(dest => dest.RollUpSum, 
           src => src.MapFrom(x => x.children.Sum(x => x.children.finalChild.Sum(x => x.someDecimal))));
发布评论

评论列表(0)

  1. 暂无评论