Hi!
I started using Syncfusion Essential Studio yesterday. Looks very good! :)
Unfortunately I couldn't figure out how (or IF it is possible) to use Entity Framework to populate the MergeFields in my document template.
I'd like to use a query like this:
ublic List<Employee> GetEmployees()
{
var db = new CareContext();
var employees = db.Employee
.Select(e => new Employee()
{
LastName = m.LastName,
Vorname = m.FirstName,
SocialNo = m.SocialNo
}).ToList();
return employees;
}
Unfortunately I don't know how to continue from here.
Is this even possible? Looking forward to hearing from you.
Greets Paul