that is, if Employee has Manager property of Employee type in the below code,
I got the error in the preview which tells
'ManagerBuisinessObject' member names cannot be the same as their enclosing type
Code: Select all
public class Employee
{
...
public Employee Manager { get; set; }
}
report.Dictionary.SynchronizeBusinessObjects(2)
Is there any resolution?
Thanks