LINQ to return only header items where line items are not zero
I have a simple sales header / sales line item table and I would like to return all header items where there the total quantity of line items is not zero I thought I could just do a join but that returns the header items duplicated for each line item: var orders = from so… Read More LINQ to return only header items where line items are not zero