Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

up vote 1 down vote accepted

The query returns several columns in a single table. If the Person table has columns ID, Name, and JobID, and the Jobs table has columns ID, and Description, the result would look like this:

ID Name     JobID ID Description
-- -------- ----- -- -------------
 1 John Doe    10 10 Bottle Washer
 2 Jane Roe    10 10 Bottle Washer
 3 Xyroid      11 11 CEO

So you would need to create a single class with these five fields.

To avoid duplicate fields or field names, and to make it work even if the tables are extended later, you should list the fields you needs in the SELECT statement:

SELECT Person.ID AS PersonID, Person.Name, Job.ID AS JobID, Job.Description
FROM Person INNER JOIN Job ON Person.JobID = Job.ID

This would require a class like this:

class PersonWithJob
{
    public int PersonID ...
    public string Name ...
    public int JobID ...
    public string Description ...
}
share|improve this answer
So, in short I have to create another class which will have properties defined explicitly and I should not use * in SQL query instead that I should use required properties only. Can't we use inheritances ? – Xyroid Oct 9 '12 at 7:08
Inheritance might help, or not. What matters is that the fields of your class match the fields returned by the SELECT. – CL. Oct 9 '12 at 7:11
ok thanks CL for helping me. – Xyroid Oct 9 '12 at 7:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.