Dapper多表查询

时间:2016-04-20 22:00:27   收藏:0   阅读:802

1对1

 

//文章
public class Post
        {
            public int ID { get; set; }
            public string Title { get; set; }
            public string Body { get; set; }
            //一篇文章只对应一个作者
public int AuthorID{get;set;}
public Author Author { get; set; } } //作者 public class Author { public int ID { get; set; } public string Name { get; set; } }
var data = cnn.Query<Post, Author, Post>(@"select * from Posts p left join Authors a on a.ID = p.AuthorID", (post, author) => { post.Author = author; return post; },splitOn:"ID").ToList();

 

1对多

 

原文:http://www.cnblogs.com/imust2008/p/5414424.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!