将来自2个数据源的2个收集列表连接在一起,找到匹配项并遍历结果 [英] Join 2 collection list together from 2 data sources find the matches and loop through the results

查看:98
本文介绍了将来自2个数据源的2个收集列表连接在一起,找到匹配项并遍历结果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想将2个不同的集合合并在一起.

I am wanting to merge together 2 different collections.

示例集合1 :(从linqpad到实时sql服务器)

Example collection 1: (linqpad to live sql server)

Sample Data (collection azedIdentity):

PersonID | FirstName | LastName   |  
 3197908    John        Smith
 4444       Jody        Smith
 55555      Jon         Smither



var azedIdentity = PersonMatchNoDOBRequired("John", "Smith").AsDynamic()
    .Select (x => new FindPersonContactViewModel
    {
        PersonID = x.PersonID,
        AZEDID = x.AZEDID,
        FirstName = x.FirstName,
        MiddleName = x.MiddleName,
        LastName = x.LastName,
    }).ToList();

现在是我要查询另一个数据源的地方(此问题在内存中)

Now is where I will query a another data source ( in memory for this question)

var personContactRoles = new List<FindPersonContactViewModel>()
{ new FindPersonContactViewModel { PersonID = 3197908, FirstName = "John", MiddleName= "", LastName="Smith", ContactType="Farmer", ContactRoleTypeId = 1, ExistInContactManager = true, ActionType = true, IsInContactManager = true },
  new FindPersonContactViewModel { PersonID = 3197908, FirstName = "John", MiddleName= "", LastName="Smith", ContactType="Plumber", ContactRoleTypeId = 2, ExistInContactManager = true, ActionType = true, IsInContactManager = true },
  new FindPersonContactViewModel { PersonID = 3197908, FirstName = "John", MiddleName= "", LastName="Smith", ContactType="Landscaper", ContactRoleTypeId = 3, ExistInContactManager = true, ActionType = true, IsInContactManager = true },
  new FindPersonContactViewModel { PersonID = 2, FirstName = "Jon", MiddleName= "", LastName="Smither" },
  new FindPersonContactViewModel { PersonID = 4, FirstName = "Jo", MiddleName= "", LastName="Smith" },
  new FindPersonContactViewModel { PersonID = 5, FirstName = "Jody", MiddleName= "", LastName="Smith" },
  new FindPersonContactViewModel { PersonID = 6, FirstName = "Johnn", MiddleName= "", LastName="Smith" },
  new FindPersonContactViewModel { PersonID = 7, FirstName = "Jake", MiddleName= "", LastName="Smith" },
  new FindPersonContactViewModel { PersonID = 8, FirstName = "Jock", MiddleName= "", LastName="Smith" },
};

注意事项1. 3197908的PersonID在这里是3倍,因为它们具有不同的ContactRoleTypeId和ContactType

Things to notice 1. PersonID of 3197908 is in here 3 times BECAUSE they have a different ContactRoleTypeId and ContactType

因此,我的目标是最终将数据加入到这样的结果集合中

So thus my GOAL is to end up joining the data to have result collection like this

PersonID | FirstName | LastName   |  ContactRoleTypeId  | ContactType
 3197908    John        Smith                1                Farmer
 3197908    John        Smith                2                Plumber
 3197908    John        Smith                3                Landscaper
 4444       Jody        Smith
 55555      Jon         Smither

我正试图加入

 var ids = from azed in azedIdentity
                join personRole in personContactRoles on azed.PersonID equals personRole.PersonID
                select personRole;

我想我需要接下来有2个foreach循环?????

I am thinking I need to have 2 nexted foreach loops ?????

两个来源使用的Collection Poco模型是这样的:

Collection Poco model used for both sources is this:

public class FindPersonContactViewModel
{

    public int PersonID { get; set; }
    public string AZEDID { get; set; }
    public string FirstName { get; set; }
    public string MiddleName { get; set; }
    public string LastName { get; set; }
    public string EmailAddress { get; set; }
    public int? GenderTypeId { get; set; }
    public string DOB { get; set; }
    public int ContactRoleTypeId { get; set; }
    public string ContactType { get; set; }
    public int PersonTypeId { get; set; }
    public string PreferredPhone { get; set; }
    public string PreferredEmail { get; set; }
    public string PhysicalAddress { get; set; }
    public bool ExistInContactManager { get; set; }
    public bool ActionType { get; set; }
    public bool IsInContactManager { get; set; }
}

推荐答案

var result = from azed in azedIdentity join personRole in personContactRoles on azed.PersonID equals personRole.PersonID 
          into r1 from p in r1.DefaultIfEmpty() select 
        new FindPersonContactViewModel{PersonID = azed.PersonID, FirstName = azed.FirstName, LastName = azed.LastName,
                                      ContactRoleTypeId = p == null ? 0 : p.ContactRoleTypeId, ContactType = p == null ? "" : p.ContactType};

这篇关于将来自2个数据源的2个收集列表连接在一起,找到匹配项并遍历结果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆