I have a collection of Car objects,
IEnumerable<Car>
And I want to return a filtered collection of car objects, based on a partial string match (it doesn't have to be startswith) where the Car.Name property has certain text in it.
Is this possible using LINQ?