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 337B

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