Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Last active November 4, 2017 10:07
Show Gist options
  • Save dcomartin/32d78b7a4aff85e6d1b620d264a7b71b to your computer and use it in GitHub Desktop.
Save dcomartin/32d78b7a4aff85e6d1b620d264a7b71b to your computer and use it in GitHub Desktop.
public class MyDbConfiguration : DbConfiguration
{
public MyDbConfiguration() : base()
{
var path = Path.GetDirectoryName(this.GetType().Assembly.Location);
SetModelStore(new DefaultDbModelStore(path));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment