diff --git a/docs/en/Community-Articles/2024-05-09-what-is-object-to-object-mapping/post.md b/docs/en/Community-Articles/2024-05-09-what-is-object-to-object-mapping/post.md index 2757f25028..a9cb6d8d53 100644 --- a/docs/en/Community-Articles/2024-05-09-what-is-object-to-object-mapping/post.md +++ b/docs/en/Community-Articles/2024-05-09-what-is-object-to-object-mapping/post.md @@ -108,7 +108,7 @@ In some scenarios you may want to make some customizations when matching. If you public int Age { get; set; } } ```` -Autommapper cannot map this automatically, you need to specify the exception. Update your `YourApplicationAutoMapperProfile`. +AutoMapper can't map these properties automatically, because they do not exist in the source object, which is the `Customer` entity. Therefore, you need to specify the exception and update your `YourApplicationAutoMapperProfile` class as follows: ````csharp