Ejemplo n.º 1
0
        private List <SqlServerScript> CreateTablesFromScripts(string scriptsRootFolderPath)
        {
            string tableScriptsFolderPath = Path.Combine(scriptsRootFolderPath, "Tables");

            return(SqlServerScriptExecutor.ExecuteScriptsInFolder(tableScriptsFolderPath, this, 1));
        }
Ejemplo n.º 2
0
        private List <SqlServerScript> CreateUserDefinedDataTypesFromScripts(string scriptsRootFolderPath)
        {
            string userDefinedDataTypesScriptsFolderPath = Path.Combine(scriptsRootFolderPath, "User Defined Data Types");

            return(SqlServerScriptExecutor.ExecuteScriptsInFolder(userDefinedDataTypesScriptsFolderPath, this, 0));
        }
Ejemplo n.º 3
0
        private List <SqlServerScript> CreateSynonymsFromScripts(string scriptsRootFolderPath)
        {
            string synonymsScriptsFolderPath = Path.Combine(scriptsRootFolderPath, "Synonyms");

            return(SqlServerScriptExecutor.ExecuteScriptsInFolder(synonymsScriptsFolderPath, this, 0));
        }