Saves a blog post. All related entities are updated transactional fashion - no DB changes will be saved unless all entities are updated successfully.

Namespace: MonoSoftware.MonoX.BusinessLayer
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public virtual void SaveBlogPost(
	BlogPostEntity blogPost,
	string tags
)
Visual Basic
Public Overridable Sub SaveBlogPost ( 
	blogPost As BlogPostEntity,
	tags As String
)
Visual C++
public:
virtual void SaveBlogPost(
	BlogPostEntity^ blogPost, 
	String^ tags
)
F#
abstract SaveBlogPost : 
        blogPost : BlogPostEntity * 
        tags : string -> unit 
override SaveBlogPost : 
        blogPost : BlogPostEntity * 
        tags : string -> unit 

Parameters

blogPost
Type: BlogPostEntity
Blog post to save
tags
Type: System..::..String
Tags associated with this blog post (comma separated list)

Implements

IBlogBLL..::..SaveBlogPost(BlogPostEntity, String)

See Also