There are examples around for this in SQL and I understand them, but I can't seem to wrap my head around it in Linq-SQL.
There are two tables, 'Accounts' and 'AccountTransactions' related by the primary key in Accounts, which is, surprise, AccountID.
I need to select each Account row and the 1 Most Recent (Top 1 when ordered Descending) child AccountTransaction.
I've tried to hack at some examples I've found but no luck (just not getting it I guess)...
Any help appreciated...