コード例 #1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Rooms EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToRooms(Room room)
 {
     base.AddObject("Rooms", room);
 }
コード例 #2
0
 /// <summary>
 /// Create a new Room object.
 /// </summary>
 /// <param name="description">Initial value of the Description property.</param>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="title">Initial value of the Title property.</param>
 /// <param name="zoneId">Initial value of the ZoneId property.</param>
 public static Room CreateRoom(global::System.String description, global::System.Int32 id, global::System.String title, global::System.Int32 zoneId)
 {
     Room room = new Room();
     room.Description = description;
     room.Id = id;
     room.Title = title;
     room.ZoneId = zoneId;
     return room;
 }