In ef 7, i created an initial migration using command 'dnx ef migrations add Initial'. When i run the application database was created for me, all good.
Then i updated my entity objects (CSharp files). Now how can i do:
- Update the existing migrations ? (Or i have to add new one?)
- Update the already created database
I am getting error: An object already exists in database.
Also, any resources where i can find good practical examples for entity framework code first, as i am struggling to get to speed.
Thanks, Javed