本文整理汇总了C#中PhotoPost.insert方法的典型用法代码示例。如果您正苦于以下问题:C# PhotoPost.insert方法的具体用法?C# PhotoPost.insert怎么用?C# PhotoPost.insert使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PhotoPost
的用法示例。
在下文中一共展示了PhotoPost.insert方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: addPhotoPosts
private void addPhotoPosts( MvcContext ctx )
{
User creator = ctx.viewer.obj as User;
for (int i = 0; i < 20; i++) {
PhotoPost x = new PhotoPost();
x.DataUrl = Img.CopyToUploadPath( "/__installer/pic/pic" + i + ".jpg" );
x.Creator = creator;
x.CreatorUrl = creator.Url;
x.OwnerId = creator.Id;
x.OwnerType = creator.GetType().FullName;
x.OwnerUrl = creator.Url;
x.Title = Path.GetFileName( x.DataUrl );
x.insert();
}
}
示例2: SavePin
public void SavePin( PhotoPost x, PhotoPost photo, String tagList )
{
populatePostInfo( photo, x );
photo.insert();
photo.Tag.Save( tagList );
// TODO 动态消息
x.Pins = PhotoPost.count( "RootId=" + x.Id + " or ParentId=" + x.Id );
x.update( "Pins" );
User user = photo.Creator;
user.Pins = PhotoPost.count( "OwnerId=" + user.Id );
user.update( "Pins" );
}