A quck projections query

Hi,

I know there is a projection to group events from a single stream in to multiple streams.

I am wondering however whether there is a projection to do the reverse?

If there isn’t would this be accepted as a pr, what is the best way of doing this?

Is there anyway to run projections written in C# built as a stand-alone class library?

As a last resort, I could always subscribe to the $all stream.

Any help/thoughts appreciated.

Cheers

Sean.

You can just write it in javascript.

fromAll().

when({

$any : function(s,e) {

if(something) {

linkTo(“mySomethingStream”, e)

}

}

})