Hi everyone-I'm trying to join three Linq queries together. One of the fields (rating) is the same name for each so when I add b.rating as you'll see below, I get a squiggly that says "Anonymous type member or property 'rating' is alread declared. Dim customerCategoryA= (From a In dc.CategoryARatings _ Where a.userID = userID _ Select New With {a.productID, a.rating, a.ratingComment}) Dim customerCategoryB = (From b In dc.CategoryBRatings _ Where b.userID = userID _ Select New With {b.productID, b.rating}) Dim DataForGridview = From p In Products _  
View Complete Post