public GenericRepository(PhotoGalleryDbContext context) { if (context == null) { throw new ArgumentException("An instance of DbContext is required to use this repository.", "context"); } this.Context = context; this.DbSet = this.Context.Set <T>(); }
public ApplicationData(PhotoGalleryDbContext context) { this.context = context; }