Skip to content

Commit 9130ea1

Browse files
committed
Remove unwanted memberList parameters.
1 parent 85864a3 commit 9130ea1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aspnet-core/src/AbpCompanyName.AbpProjectName.Application/Users/Dto/UserMapProfile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class UserMapProfile : Profile
88
public UserMapProfile()
99
{
1010
CreateMap<UserDto, User>();
11-
CreateMap<UserDto, User>(MemberList.Source)
11+
CreateMap<UserDto, User>()
1212
.ForMember(x => x.Roles, opt => opt.Ignore())
1313
.ForMember(x => x.CreationTime, opt => opt.Ignore())
1414
.ForMember(x => x.LastLoginTime, opt => opt.Ignore());

0 commit comments

Comments
 (0)