| 12345678910111213141516171819202122 |
- using Microsoft.EntityFrameworkCore;
- using Volo.Abp.EntityFrameworkCore;
- using Volo.Abp.OpenIddict.EntityFrameworkCore;
- namespace AuthServer.EntityFrameworkCore
- {
- public class AuthServerDbContext : AbpDbContext<AuthServerDbContext>
- {
- public AuthServerDbContext(DbContextOptions<AuthServerDbContext> options)
- : base(options)
- {
- }
- protected override void OnModelCreating(ModelBuilder modelBuilder)
- {
- base.OnModelCreating(modelBuilder);
- modelBuilder.ConfigureOpenIddict();
- }
- }
- }
|