This is kind of like the MultiMap query, except not.
Given the following DTO:
public class Product {
public int Id { get; set; }
public string Name { get; set; }
public Category Category { get; set; }
}
public class Category {
public string Name { get; set; }
}
I should be able to write the following SQL query:
SELECT Id, Name, OtherColumn AS "Category.Name", ...
(Notice the usage of the quoted identifier)
The period in the column name is used as a path delimiter. It's a little bit
different than the MultiMap because the data in the sub-entity (Category in
this example) doesn't have to belong to a different table.
Original issue reported on code.google.com by joseph.d...@gmail.com on 3 Dec 2012 at 1:58
Original issue reported on code.google.com by
joseph.d...@gmail.com
on 3 Dec 2012 at 1:58