public void InsertOrUpdate(Theme theme) { if (theme.ThemeId == default(long)) { // New entity context.Themes.Add(theme); } else { // Existing entity context.Entry(theme).State = EntityState.Modified; } }
public void InsertOrUpdate(RequestQuote requestquote) { if (requestquote.RequestQuoteId == default(long)) { // New entity context.RequestQuotes.Add(requestquote); } else { // Existing entity context.Entry(requestquote).State = EntityState.Modified; } }
public void InsertOrUpdate(LogException logexception) { if (logexception.LogExceptionId == default(long)) { // New entity context.LogExceptions.Add(logexception); } else { // Existing entity context.Entry(logexception).State = EntityState.Modified; } }
public void InsertOrUpdate(View view) { if (view.ViewId == default(long)) { // New entity context.Views.Add(view); } else { // Existing entity context.Entry(view).State = EntityState.Modified; } }
public void InsertOrUpdate(Area area) { if (area.AreaId == default(long)) { // New entity context.Areas.Add(area); } else { // Existing entity context.Entry(area).State = EntityState.Modified; } }
public void InsertOrUpdate(Zone zone) { if (zone.ZoneId == default(long)) { // New entity context.Zones.Add(zone); } else { // Existing entity context.Entry(zone).State = EntityState.Modified; } }
public void InsertOrUpdate(Content content) { if (content.ContentId == default(long)) { // New entity context.Contents.Add(content); } else { // Existing entity context.Entry(content).State = EntityState.Modified; } }
public void InsertOrUpdate(LogMessage logmessage) { if (logmessage.LogMessageId == default(long)) { // New entity context.LogMessages.Add(logmessage); } else { // Existing entity context.Entry(logmessage).State = EntityState.Modified; } }
public void InsertOrUpdate(Setting setting) { if (setting.SettingsId == default(long)) { // New entity context.Settings.Add(setting); } else { // Existing entity context.Entry(setting).State = EntityState.Modified; } }
public void InsertOrUpdate(Category category) { if (category.CategoryId == default(long)) { // New entity context.Categories.Add(category); } else { // Existing entity context.Entry(category).State = EntityState.Modified; } }
public void InsertOrUpdate(User user) { if (user.UserId == default(System.Guid)) { // New entity user.UserId = Guid.NewGuid(); context.Users.Add(user); } else { // Existing entity context.Entry(user).State = EntityState.Modified; } }
public void InsertOrUpdate(Role role) { if (role.RoleId == default(System.Guid)) { // New entity role.RoleId = Guid.NewGuid(); context.Roles.Add(role); } else { // Existing entity context.Entry(role).State = EntityState.Modified; } }