Possible to use specialization type in XPath?

1
Hello, I was wondering if there is a way to use the type of specialization of an entity in an XPath statement. E.g. I have the entity Car with 2 specializations: Honda, and Toyota. I then want to create an XPath that only retrieves Cars of the specialization 'Honda'. Thanks!
asked
1 answers
1

Like Bas said, it is possible but why would you want to do that?

Either the Data Grid Entity should show be Honda or Toyota.

If you are trying to show some other thing like Owner (CarOwner) of the car, but only want to show the owner's who have a Honda then it should have the CarOwner as the Entity and the XPath should read:

[YourModule.Car_CarOwner/YourModule.Honda]

answered