/// <summary>
 /// There are no comments for tblBlogs_Comments in the schema.
 /// </summary>
 public void AddTotblBlogs_Comments(tblBlogs_Comments tblBlogs_Comments)
 {
     base.AddObject("tblBlogs_Comments", tblBlogs_Comments);
 }
 /// <summary>
 /// Create a new tblBlogs_Comments object.
 /// </summary>
 /// <param name="id">Initial value of Id.</param>
 /// <param name="createdDate">Initial value of CreatedDate.</param>
 /// <param name="createdBy">Initial value of CreatedBy.</param>
 /// <param name="modifiedDate">Initial value of ModifiedDate.</param>
 /// <param name="modifiedBy">Initial value of ModifiedBy.</param>
 /// <param name="name">Initial value of Name.</param>
 /// <param name="content">Initial value of Content.</param>
 /// <param name="email">Initial value of Email.</param>
 /// <param name="iP">Initial value of IP.</param>
 /// <param name="isApproved">Initial value of IsApproved.</param>
 /// <param name="postId">Initial value of PostId.</param>
 /// <param name="postSlug">Initial value of PostSlug.</param>
 /// <param name="blogId">Initial value of BlogId.</param>
 public static tblBlogs_Comments CreatetblBlogs_Comments(int id, global::System.DateTime createdDate, string createdBy, global::System.DateTime modifiedDate, string modifiedBy, string name, string content, string email, string iP, bool isApproved, int postId, string postSlug, int blogId)
 {
     tblBlogs_Comments tblBlogs_Comments = new tblBlogs_Comments();
     tblBlogs_Comments.Id = id;
     tblBlogs_Comments.CreatedDate = createdDate;
     tblBlogs_Comments.CreatedBy = createdBy;
     tblBlogs_Comments.ModifiedDate = modifiedDate;
     tblBlogs_Comments.ModifiedBy = modifiedBy;
     tblBlogs_Comments.Name = name;
     tblBlogs_Comments.Content = content;
     tblBlogs_Comments.Email = email;
     tblBlogs_Comments.IP = iP;
     tblBlogs_Comments.IsApproved = isApproved;
     tblBlogs_Comments.PostId = postId;
     tblBlogs_Comments.PostSlug = postSlug;
     tblBlogs_Comments.BlogId = blogId;
     return tblBlogs_Comments;
 }