Question
Filter values from an array which does not belongs to a group
Hi All,
Below is my Array.
{
{
Id:"A",
Value: 123
},
{
Id:"B",
Value: 345
},
{
Id:"C",
Value: 678
}
}
1.I want to check if list contains items with Id apart from "A" and "B".
2.Also I want to filter the items whose Id is not equal to "A" and "B".
