It looks like CodeFirst stops doing its homework when it doesn't have full control of the database (I suppose). The scenario is a web site hosted on Arvixe.com (or I suppose any other shared hosting server), where I have to create databases only from their control panel (and NOT with Sql Server Management Studio, just to say...). Once created an empty database, I register a connection in the web site, and I use it to generate database from poco objects like in:

add-migration m1 -targetdatabase myconnection

This generates correctly my FIRST migration, that I can apply without problems with

update-database -targetdatabase myconnection

The first concern, not too important, is that since the database is existing, it will NOT issue the Seed command, so I have to insert my first records by hand, but this is not a great problem.

Then I change my poco objects, and I need to update the database, but when I issue ANOTHER

add-migration m2 -targetdatabase myconnection

it gives the error:

System.Data.Entity.Migrations.MigrationsPendingException: Unable to generate an explicit migration because the following explicit migrations are pending: [201111081426466_m1]. Apply the pending explicit migrations before attempting to generate a new explicit migration.

This is really strange, since if I look at the database, I can see even the table __MigrationHistory, but then it looks like it cannot recognize it...

Anyone with the same problem, or some good tip to where investigate? Thanks in advance, Andrea Bioli

link|improve this question

20% accept rate
1  
Ok, just in the minute after the posting, I realized that the table __MigrationHistory is NOT created as a system table... so it's obvious that the second time, it cannot find it... so the problem looks like to be the rights to write the table in the right place... – abioli Nov 8 '11 at 14:41
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.