Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created January 11, 2019 08:01
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 wullemsb/a9df652d835d9aba59eefedb80485cfa to your computer and use it in GitHub Desktop.
Save wullemsb/a9df652d835d9aba59eefedb80485cfa to your computer and use it in GitHub Desktop.
public class SampleContext:DbContext
{
public SampleContext()
{
}
public SampleContext(string connectionString)
{
_connectionString = connectionString;
}
public SampleContext(DbContextOptions<SampleContext> options) : base(options)
{
}
//Removed other code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment