Hi, I have a JArray (of size 21.000) that for each entry, contains the keys “Name”, “Price”, and “URL”.
What I need, is to be able to get ONLY all the entries with a specific “URL” value.
Meaning getting the “Name”, “Price” and “URL” of each entry in the JArray that contains a specific value of “URL”.
I’m new at using Select, Where, and LinQ. But I know that what I want can be achieved using them.
Does anyone know and would be willing to help me achieve this?.
The URL will always be unique and the name can be repeated for different “products”.
In this example, what I would want is to retrieve the “Name”, “URL” and “Price” for all the entries with the value “www.the-thing-i-want.com” in the key “URL”.
Finally I have a way to filter my JArray, thank you!
And I feel dumb for my previous message, I deleted it after re-checking the image you sent and recognizing my mistake. I speed read it and basically I messed up.