/// <summary> /// Deprecated Method for adding a new object to the Configs EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToConfigs(Config config) { base.AddObject("Configs", config); }
/// <summary> /// Create a new Config object. /// </summary> /// <param name="id">Initial value of the ID property.</param> /// <param name="name">Initial value of the Name property.</param> /// <param name="value">Initial value of the Value property.</param> public static Config CreateConfig(global::System.Int32 id, global::System.String name, global::System.String value) { Config config = new Config(); config.ID = id; config.Name = name; config.Value = value; return config; }