07-20-2018
02:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
07-20-2018
02:44 AM
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();