Updating User Fields via ListData.svc
Just putting this out there since I didn’t find any info out there. If you’re using the ADO.NET REST data services to update user fields, you can’t just set it like so:
1 2 3 |
{"AssignedTo" : "3;#Charles Chen"} // No good! {"AssignedTo" : "DEV\\cchen"} // Nope! {"AssignedTo" : {"Account" : "DEV\\cchen"}} // Nope! |
You have to do it using a...