Hi All,
Even something as simple as the following projection is failing when I try to run under mono (no issues under .NET). Any thoughts?
fromAll()
.when({
$init: function () {
return { count: 0 }; // initial state
},
$any: function(s, e) {
s.count += 1;
return s;
}
});