public void InsertConfiguration(Configuration config) { using (var context = GetContext()) { context.Configurations.Add(config); context.SaveChanges(); } }
public void UpdateConfiguration(Configuration config) { using (var context = GetContext()) { context.Configurations.Attach(config); context.Entry(config).State = EntityState.Modified; context.SaveChanges(); } }