Дано:
Генерируется отчет. В качестве источника данных используется BusinessObject класса
Код: Выделить всё
public classA
{
public bool IsNew {get;set;}
public string Value {get;set;}
}
Код: Выделить всё
var items = new List<ClassA>();
items.AddRange(new[]
{
new ClassA { IsNew = true, Text = "Text 1" },
new ClassA { IsNew = false, Text = "Text 2" },
new ClassA { IsNew = false, Text = "Text 3" },
new ClassA { IsNew = true, Text = "Text 4" },
new ClassA { IsNew = true, Text = "Text 5" }
});
var report = new StiReport();
report.RegBusinessObject("Items", items);
report.Design();
Встроенные фильтры не видят полей BusinessObject