/// <summary>
 /// Deprecated Method for adding a new object to the Settings EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToSettings(Setting setting)
 {
     base.AddObject("Settings", setting);
 }
 /// <summary>
 /// Create a new Setting object.
 /// </summary>
 /// <param name="settingID">Initial value of the SettingID property.</param>
 /// <param name="settingGroup">Initial value of the SettingGroup property.</param>
 /// <param name="settingKey">Initial value of the SettingKey property.</param>
 /// <param name="settingValue">Initial value of the SettingValue property.</param>
 public static Setting CreateSetting(global::System.Int32 settingID, global::System.String settingGroup, global::System.String settingKey, global::System.String settingValue)
 {
     Setting setting = new Setting();
     setting.SettingID = settingID;
     setting.SettingGroup = settingGroup;
     setting.SettingKey = settingKey;
     setting.SettingValue = settingValue;
     return setting;
 }