Example #1
0
 /// <summary>
 /// 修改交流帖子
 /// </summary>
 /// <param name="content"></param>
 public static void UpdateContent(Model.Exchange_Content content)
 {
     Model.SUBHSSEDB        db         = Funs.DB;
     Model.Exchange_Content newContent = db.Exchange_Content.FirstOrDefault(e => e.ContentId == content.ContentId);
     if (newContent != null)
     {
         newContent.ContentTypeId = content.ContentTypeId;
         newContent.Theme         = content.Theme;
         newContent.Contents      = content.Contents;
         newContent.CompileDate   = content.CompileDate;
         newContent.AttachUrl     = content.AttachUrl;
         db.SubmitChanges();
     }
 }
Example #2
0
 /// <summary>
 ///根据主键删除交流帖子
 /// </summary>
 /// <param name="lawRegulationId"></param>
 public static void DeleteContentById(string contentId)
 {
     Model.SUBHSSEDB        db      = Funs.DB;
     Model.Exchange_Content content = db.Exchange_Content.FirstOrDefault(e => e.ContentId == contentId);
     if (content != null)
     {
         if (!string.IsNullOrEmpty(content.AttachUrl))
         {
             BLL.UploadFileService.DeleteFile(Funs.RootPath, content.AttachUrl);
         }
         db.Exchange_Content.DeleteOnSubmit(content);
         db.SubmitChanges();
     }
 }
Example #3
0
 /// <summary>
 /// 添加交流帖子
 /// </summary>
 /// <param name="content"></param>
 public static void AddContent(Model.Exchange_Content content)
 {
     Model.SUBHSSEDB        db         = Funs.DB;
     Model.Exchange_Content newContent = new Model.Exchange_Content
     {
         ContentId     = content.ContentId,
         ContentTypeId = content.ContentTypeId,
         Theme         = content.Theme,
         Contents      = content.Contents,
         CompileMan    = content.CompileMan,
         CompileDate   = content.CompileDate,
         AttachUrl     = content.AttachUrl
     };
     db.Exchange_Content.InsertOnSubmit(newContent);
     db.SubmitChanges();
 }