Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As part of our intended migration from Linq2Sql to Entity Framework, we have created a small EF model consisting of ten entities. Because we are working with a legacy application we are using the 'code first' option and manually mapping our POCO objects to tables within the database. We do not want the Entity Framework code to update the database. I believe that the following is all I need to do to achieve this - I would appreciate confirmation as I was not sure whether the SetInitializer code should go here or perhaps in the Global.asax code.

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
    Database.SetInitializer<InboxDataContext>(null);

    modelBuilder.Configurations.Add(new Subscribers.Mapping.DataSourceMap());
    modelBuilder.Configurations.Add(new Subscribers.Mapping.SubscriberMap());
    ...
}

As part of this update, we have created a small test page (MVC controller and views) and added it to our main application project. During development and testing this has worked well. The only thing we did notice is that if we updated the underlying EF model, the initial page load seemed to take several minutes to render. I assumed this was because EF had to rebuild its views and mappings to reflect the changes - to my disgrace, I didn't worry too much about this as a) I don't have a full understanding of how this works and b) it only seemed happened on model changes.

This morning we loaded this update to the production server for initial testing and this time the initial load problem became much worse - so much so in fact that the test page never loaded.

So, to get to my questions:

  1. Is there anything else I should/should not be doing to prepare my application for production?
  2. How can I improve the initial load performance?
  3. How can I find out why the initial load on the production server never completes - I am not seeing any error messages?

I did try downloading the Entity Framework Power Tools and running the 'Generate Views' option on the derived DbContext class, but since I could only run this in the development environment I was not sure whether this would work when copied to the production server - it didn't appear to.

I should mention that the development environment contains just one hundred records in the main table and the production environment contains almost one million records (same schemas), again I wasn't sure if this would make any difference.

Any help advice would be appreciated.

Thanks.

share|improve this question
The power tools generate views creates a class in your project, so as long as it is a compiled part of the app that you deploy to production, it should be working to help EF's cold-start load time. – danludwig Oct 24 '12 at 12:24
Yes, I created the views and then redeployed the application - nothing more complex than an FTP copy. This did not appear to resolve the problem. – Neilski Oct 24 '12 at 12:43

1 Answer

up vote 1 down vote accepted

Firstly, if you are using an existing database then a better approach would be Model First. You can connect your Edmx to your current database and it will gather all the required mappings as they currently stand. It then also generates the POCO classes and DbContext (with EF5, you have to do it manually in <5). Using this approach may cut down on initialisation time as your code wont have to create a model at runtime.

Give this a try, and it might solve all your problems (I believe they are all related).

share|improve this answer
We looked at this first, but we decided that we wanted to separate out the model from the underlying data store completely - hence the code first approach. Whilst I appreciate that this might resolve the issue, I am reluctant to believe that the code first model can't support a very simplistic model of just 10 entity classes (at this stage anyway). The only difference between development and production, as far as I know, is the number of records in the database - could this effect the EF start-up performance? – Neilski Oct 24 '12 at 16:15
The only difference between Model first and Code first is how you create the model. In both cases a model is created, but with model first you do it directly (thus saving initialisation time) and in code first it's done at runtime. There's nothing you can do with Code first that you can't do in ModelFirst. No the number of records shouldn't make a difference as the model checks the schema, not the records. I would try a Model approach, it would take a few seconds to update a blank model from a database, and see if that helps. – Ryan Amies Oct 25 '12 at 6:20
As suggested and created the model from the existing database. Unfortunately, I seem to have the same problem as before. The application works fine on the local development web server, but hangs (or at least has been locked up for over 30 minutes) on the production server. I'm not seeing any errors (either on the web site or in the event logs), but if I look at the Task Manager I can see that the w3wp.exe process for the web site is continually growing its memory usage. I can only assume that the problem is common to both Model First and Code First. Any suggestions would be appreciated. – Neilski Oct 25 '12 at 15:56
My guess is I'm doing something, or not doing something, stupid on the production installation - but am at a loss as to know where to look. – Neilski Oct 25 '12 at 16:17
Once the 30 minutes is over does the application work normally? Do you have any seeding? It sounds like you're doing a very complex query or some such, like a join over a table with a few million records. Could you perhaps isolate where the issue is arising. Perhaps bring a backup of the production DB into dev and then debug to see where it's hanging. – Ryan Amies Oct 25 '12 at 20:24
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.