Skip to content

Instantly share code, notes, and snippets.

@subhendu-de
Created December 9, 2018 13:58
Show Gist options
  • Save subhendu-de/1e9e3e37ab9aee56868df0e3ee2529b0 to your computer and use it in GitHub Desktop.
Save subhendu-de/1e9e3e37ab9aee56868df0e3ee2529b0 to your computer and use it in GitHub Desktop.
using System;
using Microsoft.EntityFrameworkCore;
namespace eKart.Api.Model
{
public class SQLServerContext: DbContext, IDatasourceContext
{
public SQLServerContext(DbContextOptions options):base(options)
{}
public DbSet Products{get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment