/// <summary> /// There are no comments for tblBlogs_Posts in the schema. /// </summary> public void AddTotblBlogs_Posts(tblBlogs_Posts tblBlogs_Posts) { base.AddObject("tblBlogs_Posts", tblBlogs_Posts); }
/// <summary> /// Create a new tblBlogs_Posts object. /// </summary> /// <param name="id">Initial value of Id.</param> /// <param name="blogId">Initial value of BlogId.</param> /// <param name="content">Initial value of Content.</param> /// <param name="createdDate">Initial value of CreatedDate.</param> /// <param name="createdBy">Initial value of CreatedBy.</param> /// <param name="published">Initial value of Published.</param> /// <param name="modifiedDate">Initial value of ModifiedDate.</param> /// <param name="modifiedBy">Initial value of ModifiedBy.</param> /// <param name="slug">Initial value of Slug.</param> /// <param name="title">Initial value of Title.</param> /// <param name="commentsEnabled">Initial value of CommentsEnabled.</param> /// <param name="viewCount">Initial value of ViewCount.</param> /// <param name="sticky">Initial value of Sticky.</param> public static tblBlogs_Posts CreatetblBlogs_Posts(int id, int blogId, string content, global::System.DateTime createdDate, string createdBy, bool published, global::System.DateTime modifiedDate, string modifiedBy, string slug, string title, bool commentsEnabled, int viewCount, bool sticky) { tblBlogs_Posts tblBlogs_Posts = new tblBlogs_Posts(); tblBlogs_Posts.Id = id; tblBlogs_Posts.BlogId = blogId; tblBlogs_Posts.Content = content; tblBlogs_Posts.CreatedDate = createdDate; tblBlogs_Posts.CreatedBy = createdBy; tblBlogs_Posts.Published = published; tblBlogs_Posts.ModifiedDate = modifiedDate; tblBlogs_Posts.ModifiedBy = modifiedBy; tblBlogs_Posts.Slug = slug; tblBlogs_Posts.Title = title; tblBlogs_Posts.CommentsEnabled = commentsEnabled; tblBlogs_Posts.ViewCount = viewCount; tblBlogs_Posts.Sticky = sticky; return tblBlogs_Posts; }