Hi,
I want to retrieve the entity display name and some of its attributes display name.
My approach:
I am querying through RetrieveEntityRequest and able to get the displayname of the entity and all of its attribute.
RetrieveEntityRequest metaDataRequest = new RetrieveEntityRequest();
RetrieveEntityResponse metaDataResponse = new RetrieveEntityResponse();
metaDataRequest.EntityFilters = EntityFilters.Attributes;
metaDataRequest.LogicalName = "abc";
metaDataResponse = (RetrieveEntityResponse)organizationService.Execute(metaDataRequest);
var entityData = metaDataResponse.EntityMetadata;
But I just want to filter the attributes and retrieve some attributes for which i have logical name?
Is there a way to do this; or any other approach is also welcome.
*This post is locked for comments