예제 #1
0
 public bool Update(tblTINTUC entity)
 {
     try
     {
         var tintuc = db.tblTINTUCs.Find(entity.matin);
         tintuc.tieude    = entity.tieude;
         tintuc.metatitle = ToAscii(entity.tieude);
         tintuc.tomtat    = entity.tomtat;
         tintuc.noidung   = entity.noidung;
         tintuc.hinhanh   = entity.hinhanh;
         db.SaveChanges();
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }