5
Answers

Need help on a relatively simple LINQ

DanYeung

DanYeung

13y
1.5k
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)