tags:

views:

26

answers:

0

I'm moving a .NET project from VS2005 to VS2010, and I've encountered a problem with some RDLC report files in my project.

Using VS2005 RDLC reports, I was able to refer to the value of child objects within parent objects. For example, in a textbox I could use the following expression:

=Fields!Customer.Value.FirstName & " " & Fields!Customer.Value.LastName

However, in VS2010 using RDLC 2008 reports this syntax doesn't seem to work anymore. Can anyone advise the correct way of doing this for RDL 2008 reports?