LINQ - nested where clause
Try Any()
companyModel = companyModel.Where(s => s.CorrespondingAddress.Any(x => x.City.Equals("Stockholm")));
companyModel = companyModel
.Where(s => s.CorrespondingAddress
.Any(x => x.City.Equals("Stockholm")));