- Code First Migrations in MVC 5
- Jquery DataTable in MVC
- Jquery DataTable multisearch paging and Sorting in MVC server side
- Jquery DataTable paging, Sorting and Multi search with datepicker in MVC server side
As the Error states
Import-Module : The specified module '.\packages\EntityFramework.6.1.1\tools\EntityFramework.psd1' was not loaded
The above error occurs mostly from migrations.
Solution 1 :
Close Visual Studio
Go to ProjectDirectory\packages\EntityFramework.6.1.1\tools\
Open init.ps1 File in Notepad and replace the below line
Import-Module (Join-Path $toolsPath EntityFramework.psd1)
with
Import-Module '.\packages\EntityFramework.6.1.1\tools\EntityFramework.psd1'
Solution 2: Remove [ ] Braces in the path
Ex: E:\[PROJECT]\CodeFirstMigration
with
E:\PROJECT\CodeFirstMigration
Solution 3: Exit Visual Studio and Re-Open
No comments:
Post a Comment