c# - entity framework query -
i' ve got tables: customer, order, product
customer has gor lot of orders, each order has got lot wof products.
how can write query products customer ? need use datasource, bye
var products = customer in customers order in customer.orders product in order.products select product;
just use linq selectmany.
Comments
Post a Comment