Why is LINQ JOIN so much faster than linking with WHERE?

后端 未结 3 2005
我在风中等你
我在风中等你 2020-11-22 02:31

I\'ve recently upgraded to VS 2010 and am playing around with LINQ to Dataset. I have a strong typed dataset for Authorization that is in HttpCache of an ASP.NET WebApplicat

3条回答
  •  盖世英雄少女心
    2020-11-22 02:58

    what you really need to know is the sql that was created for the two statements. There are a few ways of getting to it but the simplest is to use LinqPad. There are several buttons right above the query results that will change to the sql. That will give you a lot more information than anything else.

    Great information you shared there though.

提交回复
热议问题