I have a report that tries to show Order.Customer.Address.Line1 in a report. My Order object comes from a Linq2Sql DBML file.
In the report i define it as Fields!Customer.Value.Address.Line1, but it comes out as "#Error".
I then tried "touching" the variable before passing it to the RDLC, and lo-and-behold it suddenly worked.
Apparently this only happens in second level, as I can print Fields!Customer.Value.Name without problems.
I could then just touch any and all second-level-objects, but it seems .. foolish.
Does anyone know a way to make it work, so that I won't need to do that?