使用Dapper将一对多映射到多个

时间:2017-10-16 00:29:14

标签: c# sql tsql one-to-many dapper

试图解决这个问题,但我无法让它发挥作用。这个查询:

select MultiCollections.*, Collections.* from MultiCollections 
left join MultiCollectionCollections on MultiCollections.Id = MultiCollectionCollections.MultiCollectionId
left join  Collections on MultiCollectionCollections.CollectionId = Collections.Id
where MultiCollections.UserId=5

这将返回此数据:

enter image description here 如您所见,第1行和第2行来自同一个标题。他们背后的数据是书籍。 第3行和第4行也是收藏品,但没有书籍。

我的代码中有两个对象: MultiCollection 集合

两者都对应于查询结果中给出的数据: Id,UserId和Title用于对象MultiCollection。其他数据用于对象Collection。

我希望在我的C#代码中看到三个MultiCollections: 行动 戏剧 小说

行动将有2个集合。戏剧和小说应该是空的。

相反,我得到了4个MultiCollections,但没有一个包含集合。我的C#代码:

public IEnumerable<MultiCollection> GetAll(int userId)
    {
        string query = @"select MC.*, C.* from MultiCollections  MC
                        left join MultiCollectionCollections MCC on MC.Id = MCC.MultiCollectionId
                        left join  Collections C on MCC.CollectionId = C.Id
                        where UserId=" + userId;

        using (DbConnection connection = ConnectionFactory())
        {
            connection.Open();
            return connection.Query<MultiCollection, List<Collection>, MultiCollection>(query,
                (a, s) =>
                {
                    a.Collections = s;
                    return a;
                });
        }
    }

运行代码时,我希望如此:

Action    
    Collections    
       -> Book 1    
       -> Book 2     
Drama    
   Collections    
       Null     
Fiction    
    Collections    
        Null

我不知道我做错了什么。

1 个答案:

答案 0 :(得分:0)

您的c#代码应如下所示:

public IEnumerable<MultiCollection> GetAll(int userId)
{
    string query = @"select MC.*, C.* from MultiCollections  MC
                    left join MultiCollectionCollections MCC on MC.Id = MCC.MultiCollectionId
                    left join  Collections C on MCC.CollectionId = C.Id
                    where UserId=" + userId;

    using (DbConnection connection = ConnectionFactory())
    {
        connection.Open();
        return connection.Query<MultiCollection, Collection, MultiCollection>(query,
            (a, s) =>
            {
                a.Collections = new List<Collection>();
                a.Collections.Add(s);
                return a;
            }, splitOn: "MultiCollectionId,CollectionId"););
    }
}

请注意,.Query<MultiCollection, Collection, MultiCollection>Collection而不是List<Collection>,它正在.add()而不是设置者。