Exemplo n.º 1
0
        public Repository(IServiceProvider serviceProvider)
        {
            var context = serviceProvider.GetRequiredService <PhotoBankDbContext>();

            this._context = context;
            _entities     = context.Set <TTable>();
        }
Exemplo n.º 2
0
 public static void Initialize(PhotoBankDbContext context)
 {
     context.Database.EnsureCreated();
 }