beantownace
Active member
- Joined
- Feb 15, 2019
- Messages
- 42
- Programming Experience
- 5-10
Hello all,
Need an assist on this one to get a clean LINQ C# group. Here is what I am trying to do.
I have a List<Order> orders which has the following fields:
CustomerId
InvoiceDate
SendDate
InvoiceAmount - always positive the transaction type next field determines (-, +)
TransactionType (this will be Buy or Sell)
Comment
What I need is to get a grouped enumerable of the following: (hope this makes sense)
GroupBy (CustomerId, InvoiceDate, SendDate)
Sum(InvoiceAmount) need to handle the Sells as negative and Buys as positive based on the TransactionType
TransactionType (if the sum is positive the TransactionType would be Buy else Sell if negative after sum)
Max (Comment) - only want one value here if they differ across the group records
Thanks all for any assist this one tripping me up.
Need an assist on this one to get a clean LINQ C# group. Here is what I am trying to do.
I have a List<Order> orders which has the following fields:
CustomerId
InvoiceDate
SendDate
InvoiceAmount - always positive the transaction type next field determines (-, +)
TransactionType (this will be Buy or Sell)
Comment
What I need is to get a grouped enumerable of the following: (hope this makes sense)
GroupBy (CustomerId, InvoiceDate, SendDate)
Sum(InvoiceAmount) need to handle the Sells as negative and Buys as positive based on the TransactionType
TransactionType (if the sum is positive the TransactionType would be Buy else Sell if negative after sum)
Max (Comment) - only want one value here if they differ across the group records
Thanks all for any assist this one tripping me up.