Type: Cassandra.Data.LinqCqlQueryTSource A CqlQuery<TSource> which after execution returns a sequence of values to invoke a transform function on.
selector
Type: System.Linq.ExpressionsExpressionFuncTSource, TResult A transform function to apply to each element.
Type Parameters
TSource
The type of the elements of source.
TResult
The type of the value returned by selector.
Return Value
Type: CqlQueryTResult a CqlQuery<TSource> which after execution will return an IEnumerable<TSource> whose elements
are the result of invoking the transform function on each element of source.
To execute this CqlQuery use Execute() method.