Click or drag to resize
RiakMapReduceQueryLink Method

Note: This API is now obsolete.

Add a link phase to the list of phases.

Namespace:  RiakClient.Models.MapReduce
Assembly:  RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax
[ObsoleteAttribute("Linkwalking is a deprecated feature of Riak and will eventually be removed.")]
public RiakMapReduceQuery Link(
	Action<RiakFluentLinkPhase> setup
)

Parameters

setup
Type: SystemActionRiakFluentLinkPhase
An ActionT that accepts a RiakFluentLinkPhase, and configures the link phase with it.

Return Value

Type: RiakMapReduceQuery
A reference to this updated instance, for fluent chaining.
Remarks
Configure the phase with a lambda similar to:
.Link(l => l.Tag("friends");
The code above will walk links with a tag of "friends".
See Also