The multi-mapping tag has no wiki summary.
1
vote
0answers
152 views
Can Dapper load a Multi-Mapping result when a join table is in use?
I have an application object which has many connection objects. This is great in the .Net world but unfortunately the join is managed via a join table with a composite key. Is it possible to map this ...
1
vote
1answer
572 views
Mapping Dapper Query to a Collection of Objects (which itself has a couple of Collections)
I want to execute a single Query (or Stored Proc with multiple resultsets). I know how to do Multi-mapping using Dapper, but I can't sort how to map the two collections onto the same parent. ...
1
vote
1answer
272 views
Using Dapper to populate objects from a T-SQL View
I'm trying out using Dapper for my data access (in ASP.NET MVC3 FWIW). I have a a T-SQL view (in SQL Server) which is something like this:
SELECT s.*, c.CompanyId AS BreakPoint c.Name AS CompanyName
...
0
votes
1answer
708 views
How to iterate a C++ map of maps
I have a map of map
std::map< int, std::map<string, double> > myMap;
std::map< int, std::map<string, double> >::iterator itr;
Iterating it with:
itr = myMap.find(nodeI);
...
3
votes
1answer
318 views
Dapper.NET multi mapping TSecond Deserializer is null
I'm trying to perform a very standard multi mapping query using Dapper, and I'm getting the following error. I also get another error occasionally when this seems to work, but I'm unable to reproduce ...
4
votes
2answers
1k views
Dapper Syntax for Nested Multi Mapping
class Person
{
Address Addr { get; set; }
int Age { get; set; }
}
class Address
{
string StreetName { get; set; }
County Cnty { get; set; }
}
...
9
votes
5answers
5k views
Help with Multi-Mapper to create object hierarchy
I've been playing around with this for a bit, because it seems like it feels a lot like the documented posts/users example, but its slightly different and isn't working for me.
Assuming the following ...
9
votes
1answer
5k views
Can't get multi-mapping to work in Dapper
Playing around with Dapper, I'm quite pleased with the results so far - intriguing!
But now, my next scenario would be to read data from two tables - a Student and an Address table.
Student table ...