Hi again, guys.
There is some way to export a array of Number ([1,2]) from JS evaluation to C# array of integer?
The JS code is:
```
(function (data){ return new RuleExecutionResult(data.BodyFat > 2 && data.Weight > 85, [1,2]) })(data)
```
RuleExecutionResult constructor is:
```
public WorkoutTemplateAssociatedData(bool isValid, int[] associatedObjectiveIds)
```
But ClearScript can't find it because "associatedObjectiveIds" is being binded to a dynamic (as you can see in the attached file), while isValid is correcly binded as true.
Comments: The behavior is by design, and marcusnaweb hasn't commented in 10 days. Marking as resolved.
There is some way to export a array of Number ([1,2]) from JS evaluation to C# array of integer?
The JS code is:
```
(function (data){ return new RuleExecutionResult(data.BodyFat > 2 && data.Weight > 85, [1,2]) })(data)
```
RuleExecutionResult constructor is:
```
public WorkoutTemplateAssociatedData(bool isValid, int[] associatedObjectiveIds)
```
But ClearScript can't find it because "associatedObjectiveIds" is being binded to a dynamic (as you can see in the attached file), while isValid is correcly binded as true.
Comments: The behavior is by design, and marcusnaweb hasn't commented in 10 days. Marking as resolved.