Can’t Filter JSON in C#

use LINQ

using System.Linq;
...
var list = obj.connections.Where(c => c.alias.name == "xyz").ToList();

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top