/// <summary> /// Deprecated Method for adding a new object to the editors EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToeditors(editor editor) { base.AddObject("editors", editor); }
/// <summary> /// Create a new editor object. /// </summary> /// <param name="id">Initial value of the id property.</param> /// <param name="name">Initial value of the name property.</param> /// <param name="password">Initial value of the password property.</param> public static editor Createeditor(global::System.Int32 id, global::System.String name, global::System.String password) { editor editor = new editor(); editor.id = id; editor.name = name; editor.password = password; return editor; }