Add missing code snippet type

pull/4022/head
Scott Addie 2017-08-17 21:57:37 -05:00 committed by GitHub
parent f2fb0b4528
commit 7950b1e4bb
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ In this topic, you'll learn how to use ASP.NET Core Identity to add functionalit
Alternately, you can test using ASP.NET Core Identity with your app without a persistent database by using an in-memory database. To use an in-memory database, add the ``Microsoft.EntityFrameworkCore.InMemory`` package to your app and modify your app's call to ``AddDbContext`` in ``ConfigureServices`` as follows:
```
```csharp
services.AddDbContext<ApplicationDbContext>(options =>
options.UseInMemoryDatabase(Guid.NewGuid().ToString()));
```