I have read this answer. It tells to create a class that matches the data structure that you are returning. So I made a class like this
public class PersonJob
{
public Person person { get; set; }
public Job job { get; set; }
}
var data = db.Query<PersonJob>("SELECT * FROM Person, Job WHERE Person.JobID = Job.ID");
So the result data has results but the property person and job is null. My textblocks are bound with the properties of Person and Job class. Please give me appropriate suggestion.
