I have these tables:
Sales: SalesList (int) PK, SalesDate (DateTime), QdeItem (Decimal), Sales Value (Decimal) .IDItem (FK), CustomerID (FK)
Item: IDItem (int) PK, Description (Varchar), ValueItem (Decimal)
Client: CustomerID (int) PK, Name (varchar), DataCadastro (DateTime)
How do I filter only those customers who bought 5 or more bikes and a tire at least using LINQ
only?