jazpearson
in reply to: Anonymous

var items = Job.Items.Where(x => x.CID == 866);

 which will give you an IEnumerable<Item> and if you want the items in a list, try this:

var items = Job.Items.Where(x => x.CID == 866).ToList();