Linq to Entities performance within ASP.NET Development Server

Posted by tster on Stack Overflow See other posts from Stack Overflow or by tster
Published on 2010-04-24T16:10:35Z Indexed on 2010/04/24 16:13 UTC
Read the original article Hit count: 284

I've been evaluating linq to entities and linq to SQL for a project.

Obviously each has its own advantages and disadvantages which have been discussed plenty of times here. However, One thing I am seeing with L2E is kind of odd.

Using L2S, when using the ASP.NET Development Server, the performance is a little slower for my web service calls. I'm looking at 300ms vs. 250 ms.

However, when using L2E, when using ASP.NET Dev Server, the performance is awful. I'm talking 1,250 ms vs. 220 ms.

I know I should probably just use local IIS for development, but I'm curious if anyone else has seen this, or knows what is causing it.

© Stack Overflow or respective owner

Related posts about asp.net-development-serv

Related posts about linq-to-entities