Пример #1
0
        public Startup(IConfiguration configuration)
        {
            Configuration = configuration;

            using var db = new BooksAppContext();
            db.Database.EnsureCreated();
        }
Пример #2
0
 public EFDataService()
 {
     _db = new BooksAppContext();
 }