Using Orleans 8 I got this error message above
Could not find a copier for type <>z__ReadOnlyArray`1[IFoo].
at a rather simple call
await bar.AddFoo([this]);
Both bar and foo (this) are grains.
I learned that the z__ReadOnlyArray type is Roslyn generated for array literals, which unfortunately seems to imply that I can't do
[assembly: GenerateCodeForDeclaringAssembly(typeof(z__ReadOnlyArray))]
as recommended elsewhere (or maybe I'm just doing it wrongly).
Using Orleans 8 I got this error message above
at a rather simple call
Both bar and foo (this) are grains.
I learned that the z__ReadOnlyArray type is Roslyn generated for array literals, which unfortunately seems to imply that I can't do
as recommended elsewhere (or maybe I'm just doing it wrongly).