Yuliy Bugarin
Results
1
comments of
Yuliy Bugarin
A workaround is to use the LINQ methods directly i.e.: ```csharp System.Linq.Enumerable.First(myEnumerable, x => x.property.Equals("someValue")) ``` which returns ```csharp {myEnumerableType} property: "someValue" ```