The following LINQ statement finds items with duplicate values for a particular property, groups them by count then does another grouping to get a boolean back.
I'm just curious how this can be improved, it seems a bit wasteful and as this is part of a object model validation library I'd quite like to get it as speedy as I can.
Speed of execution is a priority, but any other suggestions are welcome.
var grouped = from g2 in
(from i in item.ParentList
where _filter(i)
group i by propGetter(i) into g
select new { Count = g.Count(), Items = g })
group g2 by g2.Count == 1 into g3
select new { IsUnique = g3.Key, Items = g3 };
foreach (var g in grouped)
{
foreach (var grp in g.Items)
{
foreach (var itm in grp.Items)
{
if (g.IsUnique == false)
itm.AddPropertyError(_propertyName, (int)Validations.Unique, _message);
else
itm.RemovePropertyError(_propertyName, (int)Validations.Unique);
}
}
}