1

After successful connection with database can't see tables. I try to use "Update from database" button but it doesn't appear at menu. How can fix it? What did i miss?

enter image description here

SixtySeven
  • 119
  • 2
  • 10
  • You missed the part "Right click on the design surface". You should double-click the EDMX in the solution explorer to open the design surface. – Gert Arnold Jan 02 '19 at 14:57

1 Answers1

1

For view tables you have two options (Maybe more, I don't know):

1 - Double click in "edmx" file, it will show you a database diagram.

2 - Once inside the diagram open View --> Other Windows --> Entity explorer data model.

Inside new panel you can see a lot of information of your database, like tables and Views in "Tables/Views" or functions in "Functions/procedures".

Ef show tables

And for add, update database, inside edmx diagram, right click, "Update model from database" and you will be able to add, update or delete tables, views... etc:

Ef update, add or remove items

Dani
  • 1,825
  • 2
  • 15
  • 29