Reuben Bond

Results 465 comments of Reuben Bond

> This is important to us, do you have a strategy for this in mind and if so, would you elaborate? If possible we'd like to contribute this feature. The...

cc @benjaminpetit I think we should address this. It's encoded as JSON but stored as binary, confusingly. In other words, you could decode that blob as UTF-8

This looks like an assembly version mismatch. Are you sure that all packages have been upgraded to v8.1.0?

Good find, thank you for reporting. It might be time for us to add serializers for unknown collection types. eg, if a type implements `IEnumerable` but otherwise has no known...

That is surprising behavior, @cbgrasshopper. I don't see any serialization attributes in that code, but I assume this error occurs post-deserialization?

Oh, make sure you only give the field an `[Id(...)]`, and not the property. That is important. I'm still a little surprised this didn't work, since it looks like your...

@pb0501x can you confirm that this PR is about ADO.NET & Redis? Or is it about two different Redis providers?

You don't necessarily need multiple hosts, but you do need multiple `ServiceCollections`, one per client, and you would need to plumb the cross-cutting concerns (`ILoggerFactory`, the `ILogger` registration, etc) from...

The old approach was just doing this anyway: the `ClientBuilder` was effectively a `HostBuilder`, creating/destroying its own container and starting a hosted service. It was confusing for people. The new...

We should make this easier... an add-on could achieve this with one DI container per client, and keyed DI to map the client back into the parent container. For example,...