public int Update(SystemConfiguration systemconfiguration) { return Ctx.Update("SystemConfiguration", systemconfiguration).AutoMap(x => x.SystemConfigurationId).Where(x => x.SystemConfigurationId).Execute(); }
public int Insert(SystemConfiguration systemconfiguration) { return Ctx.Insert<SystemConfiguration>("SystemConfiguration", systemconfiguration).AutoMap(x => x.SystemConfigurationId).ExecuteReturnLastId<int>(); }