Method WithMap
WithMap<TNext>(Func<TOut, TNext>)
Specifies a mapping that will be used to turn items of type TOut into items of type
TNext.
IConfiguredQuery<TOut, TNext> WithMap<TNext>(Func<TOut, TNext> map)
Parameters
mapFunc<TOut, TNext>The mapping function.
Returns
- IConfiguredQuery<TOut, TNext>
A new instance whose input type is
TOutand whose input type isTNext.
Type Parameters
TNextThe output type of the mapping function.