Sent the following sheet of objects to the view:
List<Worker> workers; public class Worker { public string FullName {get;set;} List<Child> Childs {get;set;} } public class Child { public string FullName {get;set;} public int Age {get;set;} } On the client side, I converted it to JSON and now I can’t get an array of employee names. B JS is something like LINQ, like in C # or do you have to cycle through it?