Мне известно, что ниже условие атрибута = 'primaryKey' не является допустимым полем, интересно, есть ли какой-то синтаксис выборки xml, который позволяет фильтровать первичный ключ, не зная имени ключа
[TestMethod]
public async System.Threading.Tasks.Task ShoulRetrieveAnyEntity(OrganizationServiceProxy _oragnizationServiceProxy)
{
var entityName = "account";
var entityGuid = "7004d3c1-3147-e811-a95e-000d3a10877d";
string xml = "<fetch distinct='false' version='1.0' output-format='xml-platform' mapping='logical' no-lock='true'>" +
"<entity name='" + entityName + "'>" +
"<all-attributes />" +
"<filter type='and'>" +
"<condition attribute='primaryKey' operator='eq' value='{" + entityGuid + "}' />" +
"</filter>" +
"</entity>" +
"</fetch>";
RetrieveMultipleRequest rmRequest = new RetrieveMultipleRequest() { Query = new FetchExpression(xml) };
EntityCollection eResults = ((RetrieveMultipleResponse)_oragnizationServiceProxy.Execute(rmRequest)).EntityCollection;
if (eResults.Entities.Count > 0)
{
foreach (KeyValuePair<string, object> attribute in eResults.Entities[0].Attributes)
{
Console.WriteLine(attribute.Key + ": " + attribute.Value.ToString());
}
}
}
}