Created
January 27, 2016 00:12
-
-
Save plioi/643e4378205f23c6a826 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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