Skip to content

Instantly share code, notes, and snippets.

@evgomes
Created January 28, 2019 11:01
Show Gist options
  • Save evgomes/529ea627a0c02010a504fecd061a55fd to your computer and use it in GitHub Desktop.
Save evgomes/529ea627a0c02010a504fecd061a55fd to your computer and use it in GitHub Desktop.
AppDbContext initial code, from Supermarket API
using Microsoft.EntityFrameworkCore;
namespace Supermarket.API.Domain.Persistence.Contexts
{
public class AppDbContext : DbContext
{
public AppDbContext(DbContextOptions<AppDbContext> options) : base(options)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment