/// <summary>
 /// Deprecated Method for adding a new object to the T_Comments EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToT_Comments(T_Comments t_Comments)
 {
     base.AddObject("T_Comments", t_Comments);
 }
 /// <summary>
 /// Create a new T_Comments object.
 /// </summary>
 /// <param name="id">Initial value of the id property.</param>
 /// <param name="message">Initial value of the message property.</param>
 /// <param name="post_date">Initial value of the post_date property.</param>
 /// <param name="author">Initial value of the author property.</param>
 /// <param name="video">Initial value of the video property.</param>
 public static T_Comments CreateT_Comments(global::System.Int32 id, global::System.String message, global::System.DateTime post_date, global::System.Int32 author, global::System.Int32 video)
 {
     T_Comments t_Comments = new T_Comments();
     t_Comments.id = id;
     t_Comments.message = message;
     t_Comments.post_date = post_date;
     t_Comments.author = author;
     t_Comments.video = video;
     return t_Comments;
 }