Aerospike LINDPad Driver

SetRecords<(Of <(<'T>)>)>..::..Select<(Of <(<'TResult>)>)> Method

Projects each element of an ARecord into a new form.

Namespace:  Aerospike.Database.LINQPadDriver.Extensions
Assembly:  Aerospike.Database.LINQPadDriver (in Aerospike.Database.LINQPadDriver.dll)

Syntax


public IEnumerable<TResult> Select<TResult>(
	Func<T, TResult> selector
)

Type Parameters

TResult
The type of the value returned by selector.

Parameters

selector
Type: Func<(Of <(<'T, TResult>)>)>
A transform function to apply to each element.

Return Value

An IEnumerable<T> whose elements are the result of invoking the transform function on each element of selector.