steam-openid-connect-provider/src/AppInMemoryDbContext.cs

16 lines
464 B
C#
Raw Normal View History

2019-05-01 21:41:28 +00:00
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
namespace SteamOpenIdConnectProvider
2019-05-01 21:41:28 +00:00
{
// This is completely in-memory, we do not need a persistent store.
public class AppInMemoryDbContext : IdentityDbContext<IdentityUser>
{
public AppInMemoryDbContext(DbContextOptions<AppInMemoryDbContext> options)
: base(options)
{
}
}
}