Would it be possible to add an implementation of ISubscriptionBuilder.Collection<T>() that does not require an argument?
In that case just use the default name for the collection based on the type T?
In the mean time I find myself doing this:
// HACK: Get the collection name which is required by Realtime.Collection
var collectionName = database.GetCollection<T>().Name;
var observable = database.Realtime.Collection<T>(collectionName);
Would it be possible to add an implementation of
ISubscriptionBuilder.Collection<T>()
that does not require an argument?In that case just use the default name for the collection based on the type
T
?In the mean time I find myself doing this:
Thanks!