I have class like
<p>public class TestGrid{</p><p>public string col {get;set}</p><p>public string col-first{get;set;}</p><p>List<Temp> temps {get;set;}</p><p>}</p><p></p><p>public class Temp{</p><p>public string Id{get;set;}</p><p>public bool IsIt{get;set;}</p><p>public bool DoesNeeded{get;set;}</p><p>}</p>
How to make Grid from TestGrid?
How to filter by Temp-class column?