Experimental: this API is experimental and might be changed or removed in the future.

UQuery.QueryBuilder<T0>.ForEach

Cambiar al Manual
public void ForEach (Action<T> funcCall);

Parámetros

funcCallThe function to be invoked with each matching element.

Descripción

Convenience overload, shorthand for Build().ForEach().


public void ForEach (List<T2> result, Func<T,T2> funcCall);

Parámetros

funcCallThe function to be invoked with each matching element.
resultEach return value will be added to this list.

Descripción

Convenience overload, shorthand for Build().ForEach().


public List<T2> ForEach (Func<T,T2> funcCall);

Parámetros

funcCallThe function to be invoked with each matching element.

Valor de retorno

List<T2> Returns a list of all the results of the function calls.

Descripción

Convenience overload, shorthand for Build().ForEach().