Model Browser Window (Entity Data Model Designer)
The Model Browser window is a Visual Studio tool window that is integrated with the ADO.NET Entity Data Model Designer (Entity Designer). It provides a tree view of the conceptual and storage models that are defined in an .edmx file (for more information, see .edmx File Overview (Entity Framework)). The Model Browser groups information into two nodes.
The first node shows you the conceptual model. By expanding the child nodes, you can view all entity types and associations in the model.
The second node shows you the target database model. By expanding the child nodes, you can see what parts of the database tables, views, and stored procedures have been imported to the model.
The Model Browser enables you to do the following:
Modify properties and mappings. Clicking an item in the Model Browser makes it active in the Properties window and the Mapping Details window. You can use these windows to modify the properties and entity mappings.
Create a function import from a stored procedure. For more information, see How to: Import a Stored Procedure (Entity Data Model Tools).
Update the storage model when changes are made to the underlying database. For more information, see SSDL Specification and How to: Update an .edmx File when the Database Changes (Entity Data Model Tools).
Delete tables, views, and stored procedures from the storage model. For more information, see SSDL Specification and How to: Delete Objects from the Storage Model (Entity Data Model Tools).
Locate an entity type on the design surface. In the Model Browser, right-click the entity name in the tree view of the conceptual model and select Show in Designer. The visual representation of the model will be adjusted so that the entity type is visible on the design surface.
Search the tree view of the conceptual and storage models. The search bar at the top of the Model Browser window allows you to search object names for a specified string.
The Model Browser opens when the Entity Designer is opened. If the Model Browser is not visible, right-click the main design surface and select Model Browser.
See Also
Concepts
ADO.NET Entity Data Model Designer