Skip to content

Instantly share code, notes, and snippets.

View romdim's full-sized avatar

Romanos Tsouroplis romdim

View GitHub Profile
@romdim
romdim / Restart sqllocaldb - update db
Created March 11, 2015 09:51
Stop and restart Local SQL DB and do update
sqllocaldb.exe stop v11.0
sqllocaldb.exe delete v11.0
Update-Database
@romdim
romdim / add-migration
Created March 11, 2015 09:46
Enable Migrations, Add Init, Update DB
Enable-Migrations –EnableAutomaticMigrations
Add-Migration Init
Update-Database
@romdim
romdim / git fix gitignore cache issues
Created March 11, 2015 09:39
git fix gitignore cache issues
git rm -r --cached .
git add .
git commit -m "fixed untracked files"