コード例 #1
0
 public void UpdateRequest(RequestEntry item)
 {
     this.context.UpdateObject(item);
     this.context.SaveChanges();
 }
コード例 #2
0
 public void UpdateRequest(RequestEntry item)
 {
     this.context.UpdateObject(item);
     this.context.SaveChanges();
 }
コード例 #3
0
 public void AddRequest(RequestEntry item)
 {
     this.context.AddObject("Requests", item);
     this.context.SaveChanges();
 }
コード例 #4
0
 public void AddRequest(RequestEntry item)
 {
     this.context.AddObject("Requests", item);
     this.context.SaveChanges();
 }