“每个人”都知道来自MoreLinq的有用 DistintBy 扩展,我需要使用它通过多个属性(没问题)来区分列表 os 对象,并且当其中一个属性是列表时,这是我的自定义类:
public class WrappedNotification
{
public int ResponsibleAreaSourceId { get; set; }
public int ResponsibleAreaDestinationId { get; set; }
public List<String> EmailAddresses { get; set; }
public string GroupName { get; set; }
}
在测试文件中创建一些对象并尝试区分这些项目
List<WrappedNotification> notifications = new List<WrappedNotification>();
notifications.Add(new WrappedNotification(1, 1, new List<string>() { "email" }, EvaluationStatus.Approved, "group"));
notifications.Add(new WrappedNotification(0, 1, new List<string>() { "email" }, EvaluationStatus.Approved, "group"));
notifications.Add(new WrappedNotification(0, 1, new List<string>() { "email" }, EvaluationStatus.Approved, "group"));
notifications.Add(new WrappedNotification(0, 1, new List<string>() { "email" }, EvaluationStatus.Approved, "group"));
notifications.Add(new WrappedNotification(0, 1, new List<string>() { "email" }, EvaluationStatus.Approved, "group"));
请注意,只有第一项不同,所以如果我使用以下代码,我可以区分这些项目,结果列表将有 2 个项目,并且没问题。
notifications = notifications.DistinctBy(m => new
{
m.ResponsibleAreaSourceId,
m.ResponsibleAreaDestinationId,
//m.EmailAddresses,
m.EvalStatus
}).ToList();
如果我评论该行 (//m.EmailAddresses) 它不起作用并返回 5 个项目。我怎样才能做到这一点?