I have 3 tables : Car_Model, Car_Brand and Car_Type
Car_Model has 2 foreign keys to the 2 other tables. I want to display everything of car_model in a gridview with instead of the foreignkeys of the 2 other tables, their values.
Currently i have the following function in my DAL:
Private dc As New ModelDataContext
Public Function selectAll() As List(Of Model)
Dim result = From p In dc.Models
Join a In dc.Brands
On p.car_brand Equals a.Car_Brand_Id
Join t In dc.Types
On p.Car_type Equals t.Car_Type_id
Select p
Return result.ToList
End Function
And the following in my BLL:
Public Function selectAll() As List(Of Model)
Return DALm.selectAll
End Function