I am trying out the SqlMigrations package for EntityFramework 4.1 and am following the steps in this tutorial.
Unfortunately I cannot get Update-Database to work. Calling it always produces the same exception:
PM> Update-Database
No pending custom scripts found.
Ensuring database matches current model.
Update-Database : The type initializer for 'Microsoft.Data.Tools.Schema.Common.Diagnostics.EtwProvider' threw an exception.
At line:1 char:16
+ Update-Database <<<<
+ CategoryInfo : NotSpecified: (:) [Update-Database], TypeInitializationException
+ FullyQualifiedErrorId : System.TypeInitializationException,System.Data.Entity.Migrations.Commands.MigrateCommand
I am on Windows XP. Is it possible that XP is not supported?
Thanks.