AspNetCore.Docs/aspnetcore/includes/view-identity-db.md

14 lines
572 B
Markdown
Raw Normal View History

### View the Identity database
# [Visual Studio](#tab/visual-studio)
* From the **View** menu, select **SQL Server Object Explorer** (SSOX).
* Navigate to **(localdb)MSSQLLocalDB(SQL Server 13)**. Right-click on **dbo.AspNetUsers** > **View Data**:
![Contextual menu on AspNetUsers table in SQL Server Object Explorer](~/security/authentication/accconfirm/_static/ssox.png)
# [.NET Core CLI](#tab/netcore-cli)
There are many third party tools you can download to manage and view a SQLite database, for example [DB Browser for SQLite](http://sqlitebrowser.org/).
---