Table of Contents

Method WithMap

Namespace
Neo4j.Driver
Assembly
Neo4j.Driver.dll

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

map Func<TOut, TNext>

The mapping function.

Returns

IConfiguredQuery<TOut, TNext>

A new instance whose input type is TOut and whose input type is TNext.

Type Parameters

TNext

The output type of the mapping function.