return (from p
in this.Entities.priceTypes
join userType in this.Entities.userTypes on p.userType equals userType.userTypeID
// join product in this.Entities.products on p.product equals product.productID
select new CommonDB.Views.PriceTypeView()
{
ProductName = p.product,
Price=p.price,
});
I managed to join two tables but i got confused on how to joing the third table (commented one) help please
3
Contributors
2
Replies
5 Days
Discussion Span
5 Months Ago
Last Updated
3
Views
Question Answered
Related Article:Auto-Complete search with related tables
is a Web Development discussion thread by AleMonteiro that has 3 replies, was last updated 2 months ago and has been tagged with the keywords: auto-complete, ajax, c#, regex, database, sql.