Hi,
I would like to have a list of objects which all inherit of the same type but can have some specific properties.
Exemple:
public
class
MyPrimaryClass
{
public
int
CommonProperty {
get
;
set
; }
}
public
class
MyInheritedClass1 : MyPrimaryClass
{
public
int
SpecificProperty1 {
get
;
set
; }
}
public
class
MyInheritedClass2 : MyPrimaryClass
{
public
int
SpecificProperty2 {
get
;
set
; }
}
And I would like to display these specific properties and if possible display each object in a specific format. Do you have an idea of how I can do that using telerik reporting ? I can't find any example or thread on this topic, but maybe I just didn't use the right key words ;)
Thanks and regards,
Olivier