예제 #1
0
 public void UpdateCategory(Team team)
 {
     context.Entry(team).State = System.Data.Entity.EntityState.Modified;
 }
예제 #2
0
 public void UpdateTopic(Topic topic)
 {
     context.Entry(topic).State = System.Data.Entity.EntityState.Modified;
 }
예제 #3
0
 public void UpdateRssFeed(RSSFeed rssfeed)
 {
     context.Entry(rssfeed).State = System.Data.Entity.EntityState.Modified;
 }
 public void UpdateCategory(Category category)
 {
     context.Entry(category).State = System.Data.Entity.EntityState.Modified;
 }