Example #1
0
        private static void RunScript(string scriptName)
        {
            var helper = new TestHelper();

            using (var connection = helper.CreateDbConnection())
            {
                connection.Open();
                SqlScript.ExecuteScript(connection, GetScript(scriptName), ignoreErrors: true);
            }
        }