Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Linq Blues
Message
 
To
All
General information
Forum:
C#
Category:
LINQ
Title:
Linq Blues
Miscellaneous
Thread ID:
01649772
Message ID:
01649772
Views:
58
Does this not work because I need to Groupby GoodsType.Description and TransactionType.Descriptiion and both have the same name.
Is there a away around this?
Or ... is this why you should always prefix your field names? :(
                var pBI = context.TransactionDetails.
                    GroupBy(t => new { t.Parcel.GoodsType.Description, t.TransactionHeader.TransactionType.Description }, (key, g) =>
                    new
                    {
                        Transaction = key.Description,
                        Goods = key.Description,
                        Weight = g.Select(t => t.Weight),
                        Amount = g.Select(x => x.Amount)
                    });

If things have the tendency to go your way, do not worry. It won't last. Jules Renard.
Next
Reply
Map
View

Click here to load this message in the networking platform