I\'m using EF 4 on my web site and have found a very disturbing problem - the first run load time is extremely slow. (about 20-30 seconds). After the first run - it will work re
I would do a little more research to identify that it is a EF, DB or IIS. I think IIS looks to be the likely culprit, as @E.J. Brennan stated.
In IIS I would ensure the IIS application pool has not recycled, while it is normal the frequency can be managed to make it less of an impact on end users. EF is probably not the problem, but the caching in the app or DB could hide an underlying SQL issue. Capture the query and analyze the execution plan to ensure it is optimal.
Hope this help pinpoint the issue.
Could be EF, but just as likely could be that your app pool is getting recycled on IIS or a combination.
If there are going to be slow periods of usage on your website, and you want each page to load fast for a visitor that happens along, in the past I have setup a timed job to hit my website at specific intervals (about 5 minutes worked for me), and that made sure that it was always ready to go when a visitor came along.
Very easy to do if you have access to a task scheduler.
I was having this problem as well, I found out that it had to do with a large number of views in my database.
Performance Considerations (Entity Framework) really helped and the steps for mitigating the impact of generating views brought down a 45-60 second initial load to 3-4 seconds.