I'm querying Dynamics CRM using fetchXML. I have an entity that have attribute (placeName) where its value is either string or value of a number. I would like to have condition that only the records with a non-number value should be selected. I didn't find any solution for that in the dynamics documents, but maybe there is a solution using an "out-of-the-box" (custom condition). This is my current fetch query:
<fetch mapping="logical" distinct="true" version="1.0">
<entity name="locations">
<attribute name="placeID" />
<attribute name="placeName" /> // This can be values like "home" or 100 - I would like to take out only those which are not a number
</entity>