Esempio n. 1
0
 /// <summary>
 /// Create a new Comment object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="authorId">Initial value of the AuthorId property.</param>
 /// <param name="createdOn">Initial value of the CreatedOn property.</param>
 /// <param name="body">Initial value of the Body property.</param>
 /// <param name="postId">Initial value of the PostId property.</param>
 public static Comment CreateComment(global::System.Int32 id, global::System.Int32 authorId, global::System.DateTime createdOn, global::System.String body, global::System.Int32 postId)
 {
     Comment comment = new Comment();
     comment.Id = id;
     comment.AuthorId = authorId;
     comment.CreatedOn = createdOn;
     comment.Body = body;
     comment.PostId = postId;
     return comment;
 }
Esempio n. 2
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Comments EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToComments(Comment comment)
 {
     base.AddObject("Comments", comment);
 }