Skip to content

Instantly share code, notes, and snippets.

@plioi
Created January 27, 2016 00:12
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 plioi/643e4378205f23c6a826 to your computer and use it in GitHub Desktop.
Save plioi/643e4378205f23c6a826 to your computer and use it in GitHub Desktop.
public class ResetDatabase : CaseBehavior
{
public void Execute(Case context, Action next)
{
var checkpoint = new Checkpoint
{
SchemasToExclude = new[] { "RoundhousE" },
TablesToIgnore = new[] { "sysdiagrams" }
};
checkpoint.Reset(ContactsContext.ConnectionString);
next();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment