I have following tables and relationship between them. I need the result as: InvoiceId, (WorkDescriptions for that invoice joined by some delimiter), (Sum of Amounts done by PaymentMethod = 'ABC' for that Invoice).
How can I achieve this in a single LINQ Query syntax (not expression/method syntax)?
UPDATE: Note that data in InvoicePayment and InvoiceWorkDescription tables can be empty (scenario where invoice is created but no details are captured yet).