我有一项任务,我必须加入两个相同类型的列表(客户)。他们有类似的条目,我必须避免重复。
这是我的客户类:
class Customer
{
private String _fName, _lName;
private int _age, _cusIndex;
private float _expenses;
public Customer(String fName, String lName, int age, float expenses, int cusIndex)
{
this._fName = fName;
this._lName = lName;
this._age = age;
this._expenses = expenses;
this._cusIndex = cusIndex;
}
}
所以我有两个List<Customer>
名为customers1
和customers2
。我需要在不使用Collections方法的情况下加入这两个方法(例如customer1.Union(customer2).ToList();
但是使用Linq查询。
这里是我写的 Linq查询:
var joined = (from c1 in customers1
join c2 in customers2
on c1.CusIndex equals c2.CusIndex
select new {c1, c2});
但是这给了我出现在两个列表上的成员。但我需要所有人,而不是重复。有没有解决方案???
答案 0 :(得分:7)
看起来没有Union
方法的查询等价物。您需要在方法链调用或查询中使用此方法。
如果你在返回两个序列的集合并看MSDN documentation时,你会看到以下官方查询:
var infoQuery =
(from cust in db.Customers
select cust.Country)
.Union
(from emp in db.Employees
select emp.Country)
;
因此,您的案例中只有两个选项:
方法链:
var joined = customers1.Union(customers2);
LINQ查询
var joined = (from c1 in customers1
select c1)
.Union
(from c2 in customers2
select c2);
答案 1 :(得分:1)
为什么不使用Distinct过滤掉重复项?
var joined = (from c1 in customers1
join c2 in customers2
on c1.CusIndex equals c2.CusIndex
select new {c1, c2}).Distinct();
Microsoft.Ajax.Utilities
中有一个不错的extension。它有一个名为DistinctBy
的函数,在您的情况下可能更相关。