Basically I got a table in my EF database with the following properties:
public int Id { get; set; } public string Title { get; set; } public string Descript
I had this error trying to run a migration to work around it I renamed the column and re-generated the migration using
add-migration migrationname -force
in the package manager console. I was then able to run
update-database
successfully.