Release notes for re-motion version 1.13.84

List of Issues

Bugfixes

New Features

Details

[RM-3514] Serializing objects of type ArgumentTypeException throws an exception

Component/s: Core Data.Linq
Issue Type: Bug
Resolution: Fixed
Status: Closed


The ArgumentTypeException's ISerializable ctor reads ExpectedType and ActualType from the SerializationInfo, but GetObjectData doesn't put it in there.

[RM-3338] Add List/ICollection.Contains() to default MethodCallExpressionNodeTypeRegistry

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


until this is implemented, a LINQ provider can just register it manually:

methodCallExpressionNodeTypeRegistry.Register (new[] { typeof (List<>).GetMethod ("Contains")}, typeof (ContainsExpressionNode));

methodCallExpressionNodeTypeRegistry.Register (new[] { typeof (ICollection<>).GetMethod ("Contains")}, typeof (ContainsExpressionNode));