I have a DbContext added as a service in startup.cs using AddDbContext.
services.AddDbContext<PartyDbContext>(options => options.UseSqlServer(Configuration.GetConnectionString("PartyConnection")));
How do I reference/use this context from inside a class?