エラーについてアドバイスをお願いします。これがコードです
void Main()
{
var a = from id in TechnicalProducts
where id.Id == "ID-4591"
select new {
Country = id.Computers.Select (x => new {x.Location.ParentLocation.ParentLocation.ParentLocation.ParentLocation.Code}),
};
Console.WriteLine(a);
}
エラー: ナビゲーション プロパティ 'Code' によって返されたエントリが null であり、初期化できません。このプロパティにアクセスする前に、null 値をチェックする必要があります