Dears,
I was trying to export all users from dnn to json file. I did that without any issue. However, when I tried to deserialize the json file back into UserInfo, I got the following error
Error setting value to 'Title' on 'DotNetNuke.Entities.Users.UserProfile'.
here is the code that throws the error
List<UserInfo> userList = JsonConvert.DeserializeObject<List<UserInfo>>(json, settings);
Could not understand why this happen. any help please?