If I have something like
np(Element(@0).Value)
or
np(qList.FirstOrDefault(Tag = "NAME").Value)
I get a NullReferenceException in ExpressionParser.GenerateConditional in /Parser/ExpressionParser.cs line 1207.
It works if I manually expand np to == null ? : null - is there a limitation to what np understands?
If I have something like
np(Element(@0).Value)or
np(qList.FirstOrDefault(Tag = "NAME").Value)I get a NullReferenceException in
ExpressionParser.GenerateConditionalin /Parser/ExpressionParser.cs line 1207.It works if I manually expand
npto== null ? : null- is there a limitation to whatnpunderstands?