何らかの理由で、以下のコードで構文エラーが発生します。私が達成しようとしているのは、複数の結合句を使用した左結合です。構文エラーは、KeywordINTOfoobarで発生します。VS2012は予期しないトークンを言います。どんな助けでも素晴らしいでしょう、ありがとう!
Dim results = From f In foo _
Join b In bar On new with {f.Type,f.ID} Equals New With {"Test",b.ID} into fooBar _
from x in foobar.DefaultEmpty() _
Where foo.id = 1