Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 725 Bytes

File metadata and controls

28 lines (19 loc) · 725 Bytes

ExpressionExtensions.GetValues<T,TR> method

Returns a getter to access all properties values from an expression, as an objects array.

TODO: add examples
public static Func<TR, object[]> GetValues<T, TR>(this Expression<Func<T, TR>> expression)
parameter description
T Expression input type
TR Expression output type
expression Source expression

Return Value

A !:Func<TR, Object[]> used to access all property values (as an object array)

See Also