You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BRDbContext.cs 419B

123456789101112131415
  1. using BlackRock.Reporting.API.Core.Models;
  2. using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
  3. using Microsoft.EntityFrameworkCore;
  4. namespace BlackRock.Reporting.API.Persistence
  5. {
  6. public class BRDbContext : IdentityDbContext<ApplicationUser>
  7. {
  8. public BRDbContext(DbContextOptions<BRDbContext> options) : base(options)
  9. {
  10. }
  11. public DbSet<User> Users { get; set; }
  12. }
  13. }