/// <summary>
 /// Create a new forum object.
 /// </summary>
 /// <param name="id">Initial value of the id property.</param>
 /// <param name="categoryid">Initial value of the categoryid property.</param>
 /// <param name="title">Initial value of the title property.</param>
 /// <param name="description">Initial value of the description property.</param>
 public static forum Createforum(global::System.Int64 id, global::System.Int64 categoryid, global::System.String title, global::System.String description)
 {
     forum forum = new forum();
     forum.id = id;
     forum.categoryid = categoryid;
     forum.title = title;
     forum.description = description;
     return forum;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the forum EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToforum(forum forum)
 {
     base.AddObject("forum", forum);
 }