From 66d7611bf8592c7b0070de61bdfbf7ccf998b6a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Mon, 1 Jun 2020 02:40:43 +0300 Subject: [PATCH] Update Object-To-Object-Mapping.md --- docs/en/Object-To-Object-Mapping.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/Object-To-Object-Mapping.md b/docs/en/Object-To-Object-Mapping.md index b0dc376f81..f5ca805611 100644 --- a/docs/en/Object-To-Object-Mapping.md +++ b/docs/en/Object-To-Object-Mapping.md @@ -198,7 +198,7 @@ public class MyProfile : Profile { public MyProfile() { - CreateMap() + CreateMap() .ForMember(x => x.CreationTime, map => map.Ignore()); } } @@ -211,7 +211,7 @@ public class MyProfile : Profile { public MyProfile() { - CreateMap() + CreateMap() .Ignore(x => x.CreationTime); } }