Ignore Constant

Ignore is a constant that can be used in expressions to state that the mapping must be ignored. They are especially useful in conditional expressions. 

I.e. Do not change the target AD attribute when a specific condition is met.

Here are a few examples of Ignore being used: 

Ignore the mapping if the employee is terminated (this will not change the target LDAP attribute)
When Employment.EmployeeStatusCode == 'T'
Then Ignore
This mapping will be ignored for all terminated employees
 
Ignore the mapping if this is an update
When IsUpdate
 
Then Ignore
This mapping will be ignored for all terminated employees
 
Ignore the mapping if the employee is located in New York City or Atlanta
When Location.City.OneOf('New York City, Atlanta')
  
Then Ignore
This mapping will be ignored for all employees located in New York City or Atlanta