Hi,
i tried to add some custom class as object data source to rdlc file. That class was composite (it had properties that are some other class type). For example:
public class Customer
{
public string Name;
public Address Address1;
}
public Address
{
public string Street;
public string City;
}
In my report data for property Address1 of class Customer was shown, and there was no problem to do that. Then I tried to present data for some other classes that is not made by me (another dll), on the same way as i done it with my custom class, but i could only present first level of data and not second, third...(in my case i wouldn't be able to show data for Address1)
Why is that? Is there anything in that classes from another dll that do not allow data to be shown in report viewer?
Please help