Фильтрация по подклассу
Добавлено: 19 авг 2012, 20:22
Имеется массив объектов, у которых есть поле - подкласс. Нельзя отфильтровать в отчёте по полю с подклассе. Хотя тект этого поля можно вывести. Версия Stimulsoft Reports.Net 2012.1 for Visual Studio 2005 - 2010.
Вот текст программы:
Вот текст программы:
Код: Выделить всё
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
mycl1 []test = new mycl1[3];
for (int i = 0; i < test.Length; ++i)
{
test[i] = new mycl1();
test[i].num = i;
test[i].cl = new mycl2();
test[i].cl.num = i * i;
test[i].cl.str = "my" + i.ToString();
}
stiReport1.RegBusinessObject("test", "test2", test);
stiReport1.Design();
}
}
public class mycl1
{
public int num { get; set; }
public mycl2 cl { get; set; }
}
public class mycl2
{
public string str { get; set; }
public int num { get; set; }
}