HI
I have a class
public class LeaveDaysData
{
public KozpontiFelhasznaloProfilItem User {get; set;}
public List<DateTime> Datum {get; set;}
public LeaveDaysData()
{
Datum = new List<DateTime>();
}
}
List<LeaveDaysData> is the the datasource of my List in report. In report I need to display the first and the last element of the nested Datum List, but if I put one more List and bound datasource to the Datum list it displays first elements date as the first and last element, and it repeats as much elements are int he list.
thnx
I have a class
public class LeaveDaysData
{
public KozpontiFelhasznaloProfilItem User {get; set;}
public List<DateTime> Datum {get; set;}
public LeaveDaysData()
{
Datum = new List<DateTime>();
}
}
List<LeaveDaysData> is the the datasource of my List in report. In report I need to display the first and the last element of the nested Datum List, but if I put one more List and bound datasource to the Datum list it displays first elements date as the first and last element, and it repeats as much elements are int he list.
thnx