Is there something wrong with this expression?
we can replicate by involving a nullable boolean variable:
And can explore the value access options and check
Within a small snippet we can provoke the issue
And rewrite to:
Could you give a try the below one,
If(list_itemsComanda.data.Where(Function(X) X.session = ent_DataosApoyo.sesion).Count=0,True,False)
Hope it helps!!
The VB .Where method can only take in Boolean as a predicate. Since x.sesion = ent_DatosApoyo.sesion evaluates to data of type Nullable Boolean, you need to get the Boolean value of the expression with the following (x.sesion = ent_DatosApoyo.sesion).Value.
Hi thank you for the attention
I tried this and it does not work
what was done in detail? What is failling?
Hello @eaghuang
Great! this did work, Thank you very much!!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.