How we can see List<double> property of .net class object in Data > Available fields?
public class EEmployee
{
public int Id { get; set; }
public string Name { get; set; }
public int Age { get; set; }
public string Address { get; set; }
public List<double> YearlySalary { get; set; }
}
How i can see YearlySalary property in Data > Available fields?