Esempio n. 1
0
 public void SaveSession(string name, string sessionId)
 {
     // Call the addNewMessageToPage method to update clients.
     using (var context = new ChatDemoAppEntities()) {
         var chatTbl = new ChatApp
         {
             ChatSession = sessionId,
             UserName    = name
         };
         context.ChatApps.Add(chatTbl);
         context.SaveChanges();
     }
 }