Skip to content

Instantly share code, notes, and snippets.

@dkreider
Created May 22, 2021 14:58
Show Gist options
  • Save dkreider/9a1082c96c8ee889a0a4330b3f9f0671 to your computer and use it in GitHub Desktop.
Save dkreider/9a1082c96c8ee889a0a4330b3f9f0671 to your computer and use it in GitHub Desktop.
using Microsoft.EntityFrameworkCore;
namespace BaseController
{
public class BaseControllerDBContext : DbContext
{
public DbSet<WeatherForecast> WeatherForecasts { get; set; }
public BaseControllerDBContext(DbContextOptions<BaseControllerDBContext> options) : base(options)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment