Distinct()
代碼段使用DropDownItem
的definied Equals(object obj)
方法。您必須定義一個適當的IEqualityComparer
並將其提供給Distinct(IEqualityComparer<T>)
方法,以告知Distinct
不要使用本機Equals(object obj)
方法,而是使用您自己的均衡。
class DropDownItemEqualityComparer : IEqualityComparer<DropDownItem>
{
#region IEqualityComparer<DropDownItem> Member
public bool Equals(DropDownItem x, DropDownItem y)
{
return
x == null || y == null
? false
: x.Value == y.Value && x.Text == y.Text;
//Or whatever properties you want to be equal
}
public int GetHashCode(DropDownItem obj)
{
if (obj != null)
return
obj.Value.GetHashCode() + obj.Text.GetHashCode();
else
throw new ArgumentNullException("obj");
}
#endregion
}
然後你就可以到Distinct
方法
var SalesOrgTypes = (from s in tblSales
orderby s.SalesOrg ascending
select new DropDownItem
{
Value = s.SalesOrg,
Text = s.SalesOrg + " - " + s.SalesOrgDesc
}).Distinct(new DropDownItemEqualityComparer());
你還沒說什麼是實際發生的事情... –