コード例 #1
0
 public void UpdateErrorCategory(Entities.ErrorCategory errorCategory)
 {
     context.Entry(errorCategory).State = EntityState.Modified;
 }
コード例 #2
0
 public void AddErrorCategory(Entities.ErrorCategory errorCategory)
 {
     context.ErrorCategories.Add(errorCategory);
 }