Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Linq Blues
Message
 
To
04/04/2017 15:01:01
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
General information
Forum:
C#
Category:
LINQ
Title:
Miscellaneous
Thread ID:
01649772
Message ID:
01649792
Views:
42
Right! Thanks.

>>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)
>>                    });
>>
>
>
>
>var pBI = context.TransactionDetails.
>					GroupBy(t => new { 
>					parcelDescription = t.Parcel.GoodsType.Description, 
>					transactionDescription = t.TransactionHeader.TransactionType.Description 
>					}, (key, g) =>
>					new
>					{
>						Transaction = key.parcelDescription,
>						Goods = key.transactionDescription,
>						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.
Previous
Reply
Map
View

Click here to load this message in the networking platform