minor edits

pull/11701/head
Tom Dykstra 2019-03-28 16:20:09 -07:00 committed by GitHub
parent 25ce5543f6
commit e17f9e9f4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -272,9 +272,9 @@ In *Program.cs*, modify the `Main` method to call `Initialize`:
Delete any student records and restart the app. If the DB is not initialized, set a break point in `Initialize` to diagnose the problem.
## View the DB
The database name is generated from the context name we provided earlier plus a dash and a GUID. Thus, the database name will be "SchoolContext-Unique GUID". The GUID will be different for each user.
The database name is generated from the context name you provided earlier plus a dash and a GUID. Thus, the database name will be "SchoolContext-{GUID}". The GUID will be different for each user.
Open **SQL Server Object Explorer** (SSOX) from the **View** menu in Visual Studio.
In SSOX, click **(localdb)\MSSQLLocalDB > Databases > ContosoUniversity1**.
In SSOX, click **(localdb)\MSSQLLocalDB > Databases > SchoolContext-{GUID}**.
Expand the **Tables** node.