User-707554951 posted
Hi manumvc,.
manumvc
If I want to modify some functionalities and add some relationships with tables then what should I do.
You description seems not clear, So, would you please provided more concrete description about your problem?
As mgebhard mentioned, you use code first or database first.
For code first, if you want to modify the relationship between two tables or add other filed to model.
You could modify your model directly, Then you need to add migration in Package Manager Console
https://blogs.msdn.microsoft.com/webdev/2013/11/01/tips-when-making-changes-in-entity-framework-code-first-models-after-scaffolding/
https://msdn.microsoft.com/en-us/library/jj591621(v=vs.113).aspx
If you use database first, you need to alter you table design in database, Then Right click on the designer surface of the EDMX designer and click Update Model From Database.
https://technet.microsoft.com/pt-br/library/cc716697(v=vs.100).aspx
Best regards
Cathy