SalarDbCodeGenerator.DbProject.ProjectDbSettions.ProjectDbSettions C# (CSharp) Method

ProjectDbSettions() public method

public ProjectDbSettions ( ) : System
return System
        public ProjectDbSettions()
        {
            DatabaseProvider = DatabaseProvider.SQLServer;
            DatabaseName = "Master";
            ServerName = "(local)";
            UseSqlAuthentication = false;
            SqlUsername = "";
            SqlPassword = "";

            // Prefix and suffixes
            PrefixForTables = null;
            PrefixForViews = "vw";
            SuffixForTables = null;
            SuffixForViews = null;

            // 30 seconds
            ConnectTimeout = 15;
            LastFetch = DateTime.MinValue;
            IgnoredPrefixes = new StringCollection();
            IgnoredSuffixes = new StringCollection();
            Tables = new List<SelectedTablesType>();
            Views = new List<SelectedTablesType>();
        }