I'm using EF4 and i need to make this query with LINQ but i don't know how.
If i have 3 tables:
- ProductType
- Product
- Season
ProductType -> one-to-many -> Product -> many-to-one -> Season
i would like to have a list of all the ProductType with their Products for one Season. Please note that i need to list ALL the ProductType even if there's no Product inside for that Season.
thank you for the help!