Release notes for re-motion version 1.13.161

List of Issues

New Features

Details

[RM-4973] Allow AggregateResultOperator to take covariant lambda expressions in .NET 4.0

Component/s: Data.Linq
Issue Type: New Feature
Resolution: Fixed
Status: Closed


Queries like the following are invalid in .NET 3.5, but okay in .NET 4.0:

(from s in QuerySource
select s.Name)
  .Aggregate<IComparable> ((allNames, name) => allNames + name.ToString ())

Support this when parsing LINQ queries.