I got myself into the server and I have retrieved (hopefully) the correct set of data. Then, I tried to list all the companies by the following code.
EntityCollection result = proxy.RetrieveMultiple(expression);
foreach (var entity in result.Entities)
{
String output = String.Empty;
if (entity.Attributes.Contains("account"))
output = entity.Attributes["account"].ToString();
}
However, it'd be nice to run an inner loop that goes through all the available attributes in result.Entities
. Should I use entity.Attributes.Keys
or is there a better method?