選択できるのは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. }