コード例 #1
0
ファイル: SessionManager.cs プロジェクト: pillesoft/JolTudomE
 public void DeleteSession() {
   using (JolTudomEEntities ent = new JolTudomEEntities()) {
     ent.Attach(_Session);
     ent.Sessions.DeleteObject(_Session);
     ent.SaveChanges();
   }
 }
コード例 #2
0
ファイル: SessionManager.cs プロジェクト: pillesoft/JolTudomE
 public void UpdateSessionLastAction() {
   using (JolTudomEEntities ent = new JolTudomEEntities()) {
     ent.Attach(_Session);
     _Session.LastAction = DateTime.UtcNow;
     ent.SaveChanges();
   }
 }