Summary
Transforms the change set into a different type using the specified transform function.
Syntax
public static IChangeSet<TDestination> Transform<TSource, TDestination>(this IChangeSet<TSource> source, Func<TSource, TDestination> transformer)
Type Parameters
Name |
Description |
TSource |
The type of the source. |
TDestination |
The type of the destination. |
Parameters
Name |
Type |
Description |
source |
IChangeSet<TSource> |
The source. |
transformer |
Func<TSource, TDestination> |
The transformer. |
Return Value
Type |
Description |
IChangeSet<TDestination> |
The change set. |