Skip to content

Ignore

Use .Ignore(...) to skip mapping a destination property.


✅ Example 1: Skipping an audit field

.Ignore(dest => dest.CreatedDate)

✅ Example 2: Avoid mapping a navigation property

.Ignore(dest => dest.ParentCategory)

✅ Example 3: Prevent cyclic reference

.Ignore(dest => dest.InverseNavigation)