So i have two objects that i join together but on some occasions lines from object x will have two properties that will be the duplicates on another object so for simplicity we can call them PropertyOne and PropertyTwo and when those two are the same i want to group them together into one line and take the sum of the amount field the two objects have
i have this linq where without the groupby part it works to get all lines but it then have the objects where the properties are the same as their own "lines" and not the same. How would i change this to make it group them properly
transactions = (from x in data.Transactions join y in data.OtherTransactions on x.TransId equals y.TransId group x by x.PropertyOne, x.PropertyTwo select new OtherFinancialTransactionsItems { Description = x.Description, LineAmount = y.Amount }).ToList(); Sample data
data.Transactions = [ {Transaction: TransId: 1, Description: "Foo", PropertyOne: "123", PropertyTwo: "100"}, {Transaction: TransId: 2, Description: "Blah", PropertyOne: "456", PropertyTwo: "200"}, {Transaction: TransId: 3, Description: "Foo", PropertyOne: "123", PropertyTwo: "100"} ] data.OtherTransactions = [ {OtherTransactions: TransId: 1, Amount: 5000}, {OtherTransactions: TransId: 2, Amount: 7500}, {OtherTransactions: TransId: 3, Amount: 5000} ] And the expected outcome would be two lines
OtherFinancialTransactionsItems [ {OtherFinancialTransactionsItem: Description: "Foo", Amount: 10000}, {OtherFinancialTransactionsItem: Description: "Blah", Amount: 7500}, ]
x.Description, notx.PropertyOne, x.PropertyTwo. Otherwise it doesn't make sense as your group (byx.PropertyOne, x.PropertyTwo) could be comprised of elements with differentDescriptionvalues.