您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }