これら2つのlinqステートメントの違いは何ですか?
何が速いですか?
彼らは同じですか?
このステートメントの違いは何ですか
from c in categories
from p in products
where c.cid == p.pid
select new { c.cname, p.pname };
そしてこの発言?
from c in categories
join p in products on c.cid equals p.pid
select new { c.cname, p.pname };
よろしくお願いします。
編集: LINQ to Objects のコンテキストで