I have two seperate lists from a DTO i created, the two lists are containing different set of data i.e in first list lets say there are some ‘userloginname’ along with 2nd last updated ‘status’.
In the 2nd List i have ‘userloginname’ with all the status record(not just the 2nd last updated status).
Is this possible if want to take each ‘userloginname’ from List1 and compare with each ‘userloginname’ in the list2 with some condition.?
thank you
Correct me if I’m misunderstanding, but how about something like this:
With this you can compare items at a given index in
list1with items at the corresponding index inlist2. If you want to compare everylist1member with every otherlist2member, you could do something like: