Hello,
Is it possible to subscribe to a category from a C# client?
E.g., an equivalent to fromCategory(‘instrument’) in a JS projection?
I understand I can work around this by creating this projection and subscribing to “all_instruments” stream instead:
fromCategory(‘instrument’).when({
$any: function(s, e) {
linkTo(‘all_instruments’, e)
}
})
It would be nice not to have to do it though.
Thanks,
Igor.