Method ParseFunction
ParseFunction<TSource, TResult>(string)
Parses a function expression.
Declaration
public Expression<Func<TSource, TResult>> ParseFunction<TSource, TResult>(string expression)
Parameters
Type | Name | Description |
---|---|---|
string | expression | The expression string to parse. |
Returns
Type | Description |
---|---|
Expression<Func<TSource, TResult>> | The parsed function expression. |
Type Parameters
Name | Description |
---|---|
TSource | The type of the source parameter. |
TResult | The type of the result. |