[]
Evaluates the expression and returns the result converted to a string.
public static implicit operator string(Expression x)
Type | Name | Description |
---|---|---|
Expression | x | Expression to evaluate and convert. |
Type | Description |
---|---|
string | Expression value as a string. |
Evaluates the expression and returns the result converted to a double.
public static implicit operator double(Expression x)
Type | Name | Description |
---|---|---|
Expression | x | Expression to evaluate and convert. |
Type | Description |
---|---|
double | Expression value as a double. |
Evaluates the expression and returns the result converted to a Boolean value.
public static implicit operator bool(Expression x)
Type | Name | Description |
---|---|---|
Expression | x | Expression to evaluate and convert. |
Type | Description |
---|---|
bool | Expression value as a Boolean value. |
Evaluates the expression and returns the result converted to a DateTime value.
public static implicit operator DateTime(Expression x)
Type | Name | Description |
---|---|---|
Expression | x | Expression to evaluate and convert. |
Type | Description |
---|---|
DateTime | Expression value as a DateTime value. |