sections in the article
Here is an example how you can work with concatenating fields with specifications, seen in this article.
var specificationFields = remoteManager.DataService.GetSpecificationFieldsForEntity("EntityId");
foreach (var specificationField in specificationFields)
{
if (specificationField.SpecificationFieldType.Format != null)
{
var concatenatedField = remoteManager.DataService.GetFormattedValue(field.SpecificationFieldType, "EntityId");
}
}
Comments
0 comments
Please sign in to leave a comment.