I've created a database model with model-first method using Entity Framework 4.0. I then created an sql script using the Generate Database from Model... I've also created an SQL Server Database file in my App_Data folder. How do I now run the SQL file against this MDF file?

I'm using Visual Studio 2010.

link|improve this question

2  
Can I get some feedback on that down vote? – gligoran Nov 21 '10 at 18:34
feedback

2 Answers

I ran into this same problem and here is what worked for me.

When I selected "Generate Database from Model..." I created a new MDF file. This process worked fine and Visual Studio generated the needed SQL Script. However, I did not know how to connect to the same MDF file to run the script.

It turned out to be quite easy.

  1. Right-click on the script and choose Connection > Connect

  2. The server name and authentication should already be set for the local SQLEXPRESS instance.

  3. Click the Options button

  4. Click the Additional Connection Parameters tab

  5. Paste in the the path to your database file using the following as a guide:

    AttachDBFilename=C:\Path\To\Database\LocalData.mdf;database=LocalData;

  6. Click the Connect button

If you still have trouble connecting it may be because there is already an open connection. Check Server Explorer and if connection is open, Right-click and choose Close Connection.

This process will also create a persistent connection as long as the SQL Script remains connected. You will want to close the script or choose Right-click > Connection > Disconnect.

More information can be found at this question: EF4 Generate Database

link|improve this answer
What does database=LocalData; have to be replaced with? – Shimmy Nov 20 '11 at 7:11
I can't answer that question definitively. I don't think it really matters what the database name is, but for me, I would always make it match the MDF file name without the extension of course. – jedatu Dec 1 '11 at 4:27
thank you, this worked for me as well. – Michael Apr 8 at 17:46
@jedatu, I tried the above, but I get this error: Unable to open the physical file "...\App_Data\Database.mdf". Operating system error 5: "5(failed to retrieve text for this error. Reason: 15105)". Cannot attach the file '...\App_Data\Database.mdf' as database 'Database'. (Microsoft SQL Server, Error: 5120) For help, click: go.microsoft.com/… – Shimmy May 16 at 1:31
feedback
up vote 1 down vote accepted

I found a solution, but it's a bit hacky.

I have SQL Server Express (2008 R2). So when generating the database from the model I connect to it and let it build a database there. Then I go to C:\Program Files\Microsoft SQL Server\MSSQL10_50.SQLEXPRESS\MSSQL\DATA. The 10_50 part is because of the version and can be different for you. So in this folder there's a .mdf file named just like the database - .mdf. There's also a _log.ldf file. I copied these to into the App_Data folder of my project.

This works but is very time consuming to generate a new .mdf database for every change in the model. So I do this just before shipping.

If you find a better answer please do share.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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