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