Konrad

Results 1 issues of Konrad

I encountered an issue with `MultiStreamProjection` I have projection defined like this ```csharp public class MyViewProjection: MultiStreamProjection { public MyViewProjection() { Identity(e => e.Id); Identity(e => e.ParentId); Identity(e => e.ParentId);...