Hi,
in an application I'm using a config-file in which i'd like also to use '&&'.
<?xml version="1.0" encoding="ISO-8859-1" ?>
<use-case id="customer">
<precondition evaluate="!empty customer && !empty product" />
<menu-item id="customer" label="Kunde" />
</use-case>
With this code I'm getting an validation error owing to the '&&' ...
Is there any solution to express this?
THX