Can one set a breakpoint in EF code first migrations seed method?

EluciusFTW picture EluciusFTW · Mar 4, 2015 · Viewed 10.1k times · Source

I am having trouble with something in the Seed method in the Configure.cs for my entity framework 6 code-first migration process. I am running the Update-Database -verbose command in the Package Manager Console, and tried to set breakpoints (in VS studio web express 2013) in the c# code of the Seed method. But even if I put it on the first statement in the method, it is not hit, although the console displays running seed method (and subsequently breaks due to my error)

So can one somehow set breakpoints in the Seed method? If not, what is the best way to debug that code?

Answer

Stephen Reindl picture Stephen Reindl · Mar 5, 2015

It's not possible directly within source code but you can attach the debugger via source code. Please see this link for details:

if (System.Diagnostics.Debugger.IsAttached == false)
   System.Diagnostics.Debugger.Launch();

The other option would be to run the migration via source code as explained above:

var configuration = new Configuration();
var migrator = new DbMigrator(configuration);
migrator.Update();