using linq I want to check certain condition, if that condition is met I want to remove that object from the list
pseudo code
if any object inside cars list has Manufacturer.CarFormat != null
delete that object
if (muObj.Cars.Any(x => x.Manufacturer.CarFormat != null))
{
?
}