How to do a join in linq to sql with method syntax?
问题 I have seen lots of examples in LINQ to SQL examples on how to do a join in query syntax but I am wondering how to do it with method syntax? For example how might I do the following var result = from sc in enumerableOfSomeClass join soc in enumerableOfSomeOtherClass on sc.Property1 equals soc.Property2 select new { SomeClass = sc, SomeOtherClass = soc } with a .Join() ? Can anyone illustrate or provide another simple example? 回答1: var result = from sc in enumerableOfSomeClass join soc in