Have looked over some other answers, but couldn't apply to this situation. In vb.net, here's what I'm trying to achieve:
Dim query = From o In dbDS.gi_organisation
Join g In dbDS.gi_game On o.ID Equals g.DeveloperID Or o.ID Equals g.PublisherID
It doesn't compile.
There's lots of solutions along these lines (c#):
var messages = from m in db.Message
join p in db.MessagePart
on new { m.ID, false } equals { p.MessageID, p.IsPlaintext }
But I cannot for the life of me apply it to my scenario. Can anyone help?