Esempio n. 1
0
        private void CreateShowCaseContext()
        {
            var optionsBuilder = new DbContextOptionsBuilder <ShowCaseContext>();

            optionsBuilder.UseNpgsql(_connection);

            ShowCaseContext context = new ShowCaseContext(optionsBuilder.Options, new OperationalStoreOptionsMigrations());

            Inserter = new(context);
        }
Esempio n. 2
0
 public ResumeDB(ShowCaseContext context)
 {
     _context = context;
 }
Esempio n. 3
0
 public Inserter(ShowCaseContext context)
 {
     _context = context;
 }