Rak*_*shi 4 .net dapper multi-mapping
class Person
{
Address Addr { get; set; }
int Age { get; set; }
}
class Address
{
string StreetName { get; set; }
County Cnty { get; set; }
}
class County
{
string CntyName;
string CntyCode;
}
Run Code Online (Sandbox Code Playgroud)
这是我的存储过程,它填充数据库中的数据.
Create Procedure SpGetAllPersons
As
Select CntyName, CntyCode, StreetName, Age from Persons
Run Code Online (Sandbox Code Playgroud)
我试着写下dapper查询,但得到一个例外
DBConn.Query<County, Address , Person, Person>
(DomainConstants.SpGetAllPersons,
(cnty, address, person) =>
{
address.Cnty = cnty;
person.Addr = address;
return person;
},
commandType: CommandType.StoredProcedure,
splitOn: "StreetName, Age").ToList();
Run Code Online (Sandbox Code Playgroud)
我尝试使用以下概念,但它只返回单个对象.我需要一份人员名单.
var sql =
@"select
1 as PersonId, 'bob' as Name,
2 as AddressId, 'abc street' as Name, 1 as PersonId,
3 as Id, 'fred' as Name
";
var personWithAddress = connection.Query<Person, Address, Extra, Tuple<Person, Address, Extra>>
(sql, (p, a, e) => Tuple.Create(p, a, e), splitOn: "AddressId,Id").First();
Run Code Online (Sandbox Code Playgroud)
提前致谢.
Rak*_*shi 11
感谢Mark和Bob跳过它.我能够以其他方式解决问题:
DBConn.Query(DomainConstants.SpGetAllPersons, commandType: CommandType.StoredProcedure)
.Select(x => new Person
{
Addr = new Address
{
Cnty = new County
{
CntyName = x.CntyName,
CntyCode = x.CntyCode
},
StreetName = x.StreetName
},
Age = x.Age
}).ToList();
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3260 次 |
| 最近记录: |