Is there a way to convert dynamic object to IEnumerable Type to filter collection with property.
dynamic
IEnumerable
dynamic data = JsonConvert.Deseri
So long as data is an IEnumerable of some kind, you can use:
data
var a = ((IEnumerable) data).Cast() .Where(p => p.verified);
The Cast() is to end up with an IEnumerable so that the type of the parameter to the lambda expression is also dynamic.
Cast()