I have a collection of Car objects,
IEnumerable<Car>
And I want to return a filtered collection of automobile objects based on partial string matching (it is not necessary to start), where the Car.Name property has a specific text in it.
Is this possible with LINQ?
leora source
share