I've only just started looking at Dapper.net and have just been experimenting with some different queries, one of which is producing weird results that I wouldn't expect.
I have 2 tables - Photos & PhotoCategories, of which are related on CategoryID
Photos Table
PhotoId (PK - int)
CategoryId (FK - smallint)
UserId (int)
PhotoCategories Table
CategoryId (PK - smallint)
CategoryName (nvarchar(50))
My 2 classes:
public class Photo
{
public int PhotoId { get; set; }
public short CategoryId { get; set; }
public int UserId { get; set; }
public PhotoCategory PhotoCategory { get; set; }
}
public class PhotoCategory
{
public short CategoryId { get; set; }
public string CategoryName { get; set; }
{
I want to use multi-mapping to return an instance of Photo, with a populated instance of the related PhotoCategory.
var sql = @"select p.*, c.* from Photos p inner join PhotoCategories c on p.CategoryID = c.CategoryID where p.PhotoID = @pid";
cn.Open();
var myPhoto = cn.Query<Photo, PhotoCategory, Photo>(sql, (photo, photoCategory) => { photo.PhotoCategory = photoCategory; return photo; }, new { pid = photoID }, null, true, splitOn: "CategoryID").Single();
When this is executed, not all of the properties are getting populated (despite the same names between the DB table and in my objects.
I noticed that if I don't 'select p.* etc.' in my sql, and instead, I explicitly state the fields I want to return EXCLUDING p.CategoryId from the query, then everything gets populated (except obviously the CategoryId against the Photo object which I've excluded from the select statement), but I would expect to be able to include that field in the query, and have it, as well as all the other fields queried within the sql, to get populated.
I could just exclude the CategoryId property from my Photo class, and always use Photo.PhotoCategory.CategoryId when I need the ID, but in some cases I might not want to populate the PhotoCategory object when I get an instance of the Photo object.
Does anyone know why the above behaviour is happening? Is this normal for Dapper?
PhotoCategoryobject... - in these cases you can of course always create dummyPhotoCategoryobjects and just set theirId. Something I'm regularly doing when I only need to pass through identifier, but my methods require object instances. – Robert Koritnik Jul 15 '11 at 23:36