我想将2个不同的集合合并在一起。
示例集合1 :(从linqpad到实时sql服务器)
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();
现在是我将查询另一个数据源的地方(此问题在内存中)
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
因此,我的目标是最终将数据加入到这样的结果集合中
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循环?????
两个来源使用的Collection Poco模型是这样的:
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; }
}
答案 0 :(得分:1)
sector_char
答案 1 :(得分:0)
您可以通过以下方法获得预期的结果:
var results = personContactRoles.Join(
azedIdentity,
x => x.FirstName + x.LastName,
y => y.FirstName + y.LastName,
(x, y) => new FindPersonContactViewModel()
{
PersonID = y.PersonID,
FirstName = y.FirstName,
LastName = y.LastName,
ContactRoleTypeId = x.ContactRoleTypeId,
ContactType = x.ContactType
});
但是由于您的POCO 0
不能为空,所以您会在ContactRoleTypeId
获得FindPersonContactViewModel.ContactRoleTypeId