Skip to content

Instantly share code, notes, and snippets.

@gnzandrs
Created April 18, 2019 15:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gnzandrs/504d3f6676828f701a9271b1a879a7ab to your computer and use it in GitHub Desktop.
Save gnzandrs/504d3f6676828f701a9271b1a879a7ab to your computer and use it in GitHub Desktop.
data base context class for dotnet core
using Microsoft.EntityFrameworkCore;
namespace DotNetApi.Models
{
public class dbContext : DbContext
{
public dbContext(DbContextOptions<dbContext> options)
: base(options)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment