Sir,
I have a situation where i want to handle Handling One to Many relation in Mail Merge of radrichtextbox.
e.g
I have a situation where i want to handle Handling One to Many relation in Mail Merge of radrichtextbox.
e.g
public class Employee
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string JobTitle { get; set; }
public List<Address> EmpAddress { get; set; }
}
public class Address
{
public string Addresses { get; set; }
}
How i will handle this situation in the case of Mail Merge. Where i want to show one employee with its multiple addresses in the table in the mail merge.
Thanks
Rizwan