如何解决编写Dapper查询嵌套对象
| 我有一个代码结构如下:class Person
{
Name PersonName;
int Age;
}
class Name
{
string FirstName { get; set; }
string LastName { get; set; }
}
这是我的存储过程,用于填充数据库中的数据。
Create Procedure SpGetAllPersons
As
Select FirstName,LastName,Age from Persons
如何编写从数据库中拉出所有人员的Dapper查询?
例:
List<Person> Persons = DbConn.Query<Person>(\"SpGetAllPersons\",CommandType.StoredProcedure);
解决方法
如果要选择嵌套对象,则需要使用多重映射器。
这应该工作:
List<Person> persons = DbConn.Query<Name,Person,Person>
(\"SpGetAllPersons\",(name,person) => {person.Name = name; return person;}
commandType: CommandType.StoredProcedure,splitOn: \"Age\");
多重映射器可以返回任何类型,甚至只是未映射到任何数据库表的聚合类型。
如果要拆分不属于id
或Id
的任何内容,请务必提供ѭ4m参数。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。