From 4e75e0150d8ba9fdc82e61516b42d04dc09e9d59 Mon Sep 17 00:00:00 2001 From: transtrike Date: Thu, 10 Dec 2020 18:04:07 +0200 Subject: Added Id in UserDto --- API/Startup.cs | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) (limited to 'API/Startup.cs') diff --git a/API/Startup.cs b/API/Startup.cs index 6d95c1a..548274c 100644 --- a/API/Startup.cs +++ b/API/Startup.cs @@ -82,21 +82,8 @@ namespace API //cfg.DestinationMemberNamingConvention = new ExactMatchNamingConvention(); cfg.CreateMap(); - cfg.CreateMap() - .ForMember(x => x.AccessFailedCount, o => o.Ignore()) - .ForMember(x => x.ConcurrencyStamp, o => o.Ignore()) - .ForMember(x => x.EmailConfirmed, o => o.Ignore()) - .ForMember(x => x.Id, o => o.Ignore()) - .ForMember(x => x.LockoutEnabled, o => o.Ignore()) - .ForMember(x => x.LockoutEnd, o => o.Ignore()) - .ForMember(x => x.NormalizedEmail, o => o.Ignore()) - .ForMember(x => x.NormalizedUserName, o => o.Ignore()) - .ForMember(x => x.PasswordHash, o => o.Ignore()) - .ForMember(x => x.PhoneNumber, o => o.Ignore()) - .ForMember(x => x.PhoneNumberConfirmed, o => o.Ignore()) - .ForMember(x => x.ProfilePicture, o => o.Ignore()) - .ForMember(x => x.SecurityStamp, o => o.Ignore()) - .ForMember(x => x.TwoFactorEnabled, o => o.Ignore()); + cfg.CreateMap(); + }).CreateMapper(); } } -- cgit v1.2.3