Hi!
I'm using ADO.Net Entity Framework and C# to retreive the languages of a destination using this:
var list =
from dd in guiaContext.DestinationDetail
where dd.id_destination == destinationID
select dd;
But when I access language in a foreach:
foreach (DestinationDetail detail in list)
languagesList.Add(detail.Language.ds_language);
detail.Language is null. Why?
Thank you!