I know that if you use EF in a model-first manner in VS2010 with a standard SQL Server database then it is easy to apply the generated DDL to the database. Is there an easy way to do this with .mdf files (SQL Server Express Files)

Thanks in advance.

link|improve this question

SQL Server Express is SQL Server. This should "just work." – Craig Stuntz May 24 '10 at 13:28
Running the SQL generated against an mdf file is failing even though the EF works fine once the SQL is run. It's just a PITA to have to use sqlcmd to run the SQL all the time in an iterative development process. – ridecar2 May 24 '10 at 21:21
What is the specific, exact error? – Craig Stuntz May 25 '10 at 16:49
Sorry about leaving it this long, it's all sorted now, just needed to run devenv.exe as an administrator. – ridecar2 Jun 20 '10 at 12:54
feedback

1 Answer

up vote 0 down vote accepted

Sussed it properly, you need to apply the DDL by hand, normally using SQL Server Management Studio. You can alternatively use SQL Compact for development.

Just wanted to get it out there.

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.