5
Answers

Need help on a relatively simple LINQ

DanYeung

DanYeung

12y
1.2k
1
I have the following.  Amount = d. intellisense does not have CompanyCode while it is in the GroupBy?

var detailGroups = headerGroup

        .GroupBy(d => d.CompanyCode)

        .Select(d => new

                {

                        CompanCode = d.

                });

Thanks.



Answers (5)