Remove comment that is not used

This commit is contained in:
Stedoss 2022-11-01 02:24:20 +00:00
parent 82376af904
commit 04a9412be7

View File

@ -9,10 +9,9 @@ public class LeedsBeerQuestDbContext : DbContext
public LeedsBeerQuestDbContext(DbContextOptions<LeedsBeerQuestDbContext> options) : base(options) public LeedsBeerQuestDbContext(DbContextOptions<LeedsBeerQuestDbContext> options) : base(options)
{ {
} }
public DbSet<Venue> Venues { get; set; } public DbSet<Venue> Venues { get; set; }
// Don't need to define these, but explicitly adding them makes them a little more discoverable.
public DbSet<Category> Categories { get; set; } public DbSet<Category> Categories { get; set; }
public DbSet<Tag> Tags { get; set; } public DbSet<Tag> Tags { get; set; }
} }