Hi all.
I'm using fetchXML to fetch the data. I have EntityColection in result of _service.RetrieveMultiple(xml_query). Entity has attributes of type Microsoft.Xrm.Sdk.EntityReference. These attributes contain such properties "Id","Name","LogicalName".
Please, help me to build the correct query to set filters and orders by this fields.
For example, sql is like this:
SELECT Id, name, cur_price, manufacturerId_Name
FROM tb_goods WHERE cur_price > 10 AND manufacturerId_Name LIKE '%jumbo%'
ORDER BY manufacturerId_Name
LIMIT 10
I'm trying to make it on server (c#). Is it possible to use manufacturerId_Name in query directly ? Maybe it needs to use some chars like '/' , '|' ?
Thank you for any help
*This post is locked for comments
I have the same question (0)