Skip to content

Instantly share code, notes, and snippets.

@merken
Created January 6, 2020 13:32
Show Gist options
  • Save merken/3647ac02c719af93e04ec634d50d729f to your computer and use it in GitHub Desktop.
Save merken/3647ac02c719af93e04ec634d50d729f to your computer and use it in GitHub Desktop.
using Contract;
using Microsoft.EntityFrameworkCore;
using System;
namespace OldSQLPlugin
{
public class ProductsDbContext : DbContext
{
public virtual DbSet<Product> Products { get; set; }
public ProductsDbContext(DbContextOptions options) : base(options)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment