コード例 #1
0
 public void AddHistory(History history)
 {
     using (var db = new MysqlDataContext())
     {
         history.HistoryId = db.History.Max(h => h.HistoryId) + 1;
         db.Add(history);
         db.SaveChanges();
     }
 }
コード例 #2
0
 public void AddOwnComment(OwnComments owncomment)
 {
     using (var db = new MysqlDataContext())
     {
         owncomment.CommentId = db.OwnComment.Max(o => o.CommentId) + 1;
         db.Add(owncomment);
         db.SaveChanges();
     }
 }