Anonymous
417 Views, 1 Reply
08-23-2018
11:39 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
08-23-2018
11:39 AM
How to compare Items in a Item List with Fabrication API?
List<Item> lstTrans = Job.Items.Where(x => x.CID == 2).ToList();
foreach (Item value in lstTrans)
{
//do stuff
} I use that to do stuff when needed.
But I want to be able to compare items within the list. I want to be able to find identical Item Numbers then make comparisons when needed.
e.g. if there are two Items with an Item number of 30, I want to then compare these two items to one another. I know what I need to do. I just want to know the easiest way to compare items in one list...