This is the first time I am using Entity framwework for web application. I have used DB First approach and have generate models against tables in database using code generator of dbcontext code generator as suggested in msdn samples. My tables have columns with variuos domain code values and their actual values are stored in a lookup table. Below is one of the tables schema from databse with lookup table defination:
Table Car ( CarId int, CarTypeCode varchar(2), CarModelCode varchar(2))
Table LookupTable (LookupId int, LookupType varchar, Lookupcode varchar, LookupValue varchar)
Example of actual data :
Car (1,'SD','TO')
Car (2,'HB','FO')
LookupTable (1, 'CarType','SD','Sedan')
LookupTable (2, 'CarType','HB','Hatchback')
LookupTable (3, 'CarModel','TO','Toyota')
LookupTable (4, 'CarModel','FO','Ford')
In this case there is no direct foriegn key relationship defined for Car and LookupTable. So when i am generating model classes no navigation property is coming which is correct. But now I am not sure how to get actual values of Car at runtime with minimum effect on performance.
Please suggest what would be the best approach if repository pattern with unity framework is used in above scenario.