I still get Runtime Error. I tested various strings:
&& x => x.GetPropertyValue<bool>("personInternal")
&& x => x.GetPropertyValue<bool>("personInternal") == TRUE
&& x => x.GetPropertyValue<bool>("personInternal").Equals(TRUE)
&& x => x.GetPropertyValue<bool>("personInternal") == "TRUE"
&& x => x.GetPropertyValue<bool>("personInternal").Equals("TRUE")
problem with Where(something && something)
I am having trouble filtering the items on a list page. The selection below works fine, but it displays every "person" under "people".
I need the selection to display only items ("person") where the property "personInternal" is TRUE.
I have tried various things without success (Runtime Error):
What am I doing wrong? Any suggestions?
Best
Hi Jesper
try
K
Hi Kevin
I still get Runtime Error. I tested various strings:
Suppose none of those are what you meant (?)
Hi Jesper,
Try to print "personInternal" value or debug what is the value of this property?
Alex
Try
Marcio, you provided code with a mistake, it should be at least:
this worked
is working on a reply...