0
如何從多個表中檢索具有一對多關係的記錄。如何從多個表中檢索具有一對多關係的記錄?
Categories[table]
CategoryId
CategoryName
Products[table]
ProductId
CategoryId
ProductName
Description
的entites
Category[Entity]
CategoryId
CategoryName
List<Product>
Product[Entity]
ProductId
ProductName
Description
所以,如果我給的categoryId,我應該得到的類別細節與同類別相關的產品清單。
如何在linq to sql中做到這一點?