示例#1
0
        /// <summary>
        /// Adds a connection string to the internal store so that the connection string can be used later by LookupManager.
        /// </summary>
        /// <param name="connectionName">The name of the connection.</param>
        /// <param name="connectionString">The actual connection string.</param>
        public static void AddConnectionString(string connectionName, string connectionString)
        {
            lock (LockObj)
            {
                if (!IsInitialized)
                {
                    throw new InvalidOperationException("SimpleLookups is not initialized.");
                }

                Configuration.AddConnectionString(connectionName, connectionString);
            }
        }
示例#2
0
        /// <summary>
        /// Initializes SimpleLookups for use.
        /// </summary>
        /// <param name="defaultConnectionString">The connection string that should be used when another isn't supplied.</param>
        /// <param name="idColumnPrefix">The suffix of the Id column. Passing a null or an empty string will cause the default value to be used.</param>
        /// <param name="nameColumnPrefix">The suffix of the Name column. Passing a null or an empty string will cause the default value to be used.</param>
        /// <param name="descriptionColumnPrefix">The suffix of the Description column. Passing a null or an empty string will cause the default value to be used.</param>
        /// <param name="codeColumnPrefix">The suffix of the Code column. Passing a null or an empty string will cause the default value to be used.</param>
        /// <param name="activeColumnName">The name of the Active column. Passing a null or an empty string will cause the default value to be used.</param>
        /// <param name="prefixColumnNamesWithTableName">A bool indicating whether or not column names (except Active) should be prefixed with the table name.</param>
        /// <param name="enableCaching">A bool indicating whether or not lookup values should be cached locally.</param>
        /// <param name="cacheRefreshPeriod">The number of seconds before the cached value is invalidated. Minimum of 30 seconds.</param>
        public static void Initialize(string defaultConnectionString, string idColumnPrefix, string nameColumnPrefix, string descriptionColumnPrefix,
                                      string codeColumnPrefix, string activeColumnName, bool prefixColumnNamesWithTableName, bool enableCaching, int cacheRefreshPeriod)
        {
            lock (LockObj)
            {
                if (IsInitialized)
                {
                    throw new InvalidOperationException("SimpleLookups is already initialized.");
                }

                if (!string.IsNullOrEmpty(idColumnPrefix))
                {
                    Configuration.IdColumnSuffix = idColumnPrefix;
                }

                if (!string.IsNullOrEmpty(nameColumnPrefix))
                {
                    Configuration.NameColumnSuffix = nameColumnPrefix;
                }

                if (!string.IsNullOrEmpty(descriptionColumnPrefix))
                {
                    Configuration.DescriptionColumnSuffix = descriptionColumnPrefix;
                }

                if (!string.IsNullOrEmpty(codeColumnPrefix))
                {
                    Configuration.CodeColumnSuffix = codeColumnPrefix;
                }

                if (!string.IsNullOrEmpty(activeColumnName))
                {
                    Configuration.ActiveColumnName = activeColumnName;
                }

                Configuration.PrefixColumnsWithTableName = prefixColumnNamesWithTableName;
                Configuration.EnableCaching = enableCaching;

                if (enableCaching)
                {
                    if (cacheRefreshPeriod < 30)
                    {
                        throw new ArgumentException("Cache Refresh Interval must be at least 30 seconds.", "cacheRefreshPeriod");
                    }

                    Configuration.CacheRefreshPeriod = cacheRefreshPeriod;
                }

                Configuration.AddConnectionString(DefaultConnectionName, defaultConnectionString);
                IsInitialized = true;
            }
        }