AppSettings.SubdirExample2Setting.ParsePrimaryKey C# (CSharp) Method

ParsePrimaryKey() public static method

Get PrimaryKey from a table row
public static ParsePrimaryKey ( TableRow row ) : int
row TableRow
return int
        public static int ParsePrimaryKey(TableRow row)
        {
            var primaryKey = row.Get_int(row.Values[0], "");
            return primaryKey;
        }
	}

Usage Example

Example #1
0
        /// <summary>
        /// Do reload the setting file: SubdirExample2
        /// </summary>
        void _ReloadAll(bool throwWhenDuplicatePrimaryKey, string customContent = null)
        {
            for (var j = 0; j < TabFilePaths.Length; j++)
            {
                var       tabFilePath = TabFilePaths[j];
                TableFile tableFile;
                if (customContent == null)
                {
                    tableFile = SettingModule.Get(tabFilePath, false);
                }
                else
                {
                    tableFile = TableFile.LoadFromString(customContent);
                }

                using (tableFile)
                {
                    foreach (var row in tableFile)
                    {
                        var pk = SubdirExample2Setting.ParsePrimaryKey(row);
                        SubdirExample2Setting setting;
                        if (!_dict.TryGetValue(pk, out setting))
                        {
                            setting           = new SubdirExample2Setting(row);
                            _dict[setting.Id] = setting;
                        }
                        else
                        {
                            if (throwWhenDuplicatePrimaryKey)
                            {
                                throw new System.Exception(string.Format("DuplicateKey, Class: {0}, File: {1}, Key: {2}", this.GetType().Name, tabFilePath, pk));
                            }
                            else
                            {
                                setting.Reload(row);
                            }
                        }
                    }
                }
            }

            if (OnReload != null)
            {
                OnReload();
            }

            ReloadCount++;
            Log.Info("Reload settings: {0}, Row Count: {1}, Reload Count: {2}", GetType(), Count, ReloadCount);
        }
All Usage Examples Of AppSettings.SubdirExample2Setting::ParsePrimaryKey