Пример #1
0
        // Private methods

        private List <SqlServerScript> CreateOtherObjectsFromScripts(string scriptsRootFolderPath)
        {
            List <string> otherObjectsScriptsFolders =
                new List <string>
            {
                "Stored Procedures",
                "Triggers",
                "User Defined Functions",
                "Views"
            };

            IEnumerable <string> otherObjectsScriptsFolderPaths =
                (from folder in otherObjectsScriptsFolders
                 select Path.Combine(scriptsRootFolderPath, folder));

            return(SqlServerScriptExecutor.ExecuteScriptsInFolders(otherObjectsScriptsFolderPaths, this, null));
        }
Пример #2
0
        private List <SqlServerScript> CreateUserDefinedDataTypesFromScripts(string scriptsRootFolderPath)
        {
            string userDefinedDataTypesScriptsFolderPath = Path.Combine(scriptsRootFolderPath, "User Defined Data Types");

            return(SqlServerScriptExecutor.ExecuteScriptsInFolder(userDefinedDataTypesScriptsFolderPath, this, 0));
        }
Пример #3
0
        private List <SqlServerScript> CreateTablesFromScripts(string scriptsRootFolderPath)
        {
            string tableScriptsFolderPath = Path.Combine(scriptsRootFolderPath, "Tables");

            return(SqlServerScriptExecutor.ExecuteScriptsInFolder(tableScriptsFolderPath, this, 1));
        }
Пример #4
0
        private List <SqlServerScript> CreateSynonymsFromScripts(string scriptsRootFolderPath)
        {
            string synonymsScriptsFolderPath = Path.Combine(scriptsRootFolderPath, "Synonyms");

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