I use reporting engine for .NET
I have the same class name in different namespaces. I added them to engine’s knowntypes.
I’m trying to use them as follows: ((CAType011901.ServiceProperties)custom).ChildLastName
And get an exception “An error has been encountered at the end of expression ‘((CAType011901.ServiceProperties)custom)’. Closing parenthesis or operator is expected.”
If there is only one class name then cast by partially qualified name is working fine: ((ServiceProperties)custom).ChildLastName
What am I doing wrong?