User Extensions to an infotable
I am trying to add user extensions to an infotable for user provisioning purposes. The infotable would have the username in one column and some of the user extensions in the other columns. This infotable will be used to populate a grid. With Things I know I can do something like:
var newEntry = new Object();
newEntry.Description1 = Things[ThingName].Property1; // STRING
newEntry.Description2 = Things[ThingName].Property2; // STRING
newEntry.Description3 = Things[ThingName].Property3; // STRING
myInfotable.AddRow(newEntry);
Users are not Things, so I am not sure how to go about this. How can I do something similar with Users?

