Results 131 comments of Peter Morris

Try forking, work from `release/5.5` and reference the libraries directly from your code. Update to see if it will do what you want, if so, submit a PR.

Please consider allowing us to not specify public/virtual/override . public partial virtual string Name { get; protected set; } Should work with a partial like this partial string Name; Or...

This is useful when we want to add all of our class extensions in an `Extensions` folder but want them all to be in the main namespace. I think the...

@drewnoakes that's the whole point of the request, to break the link between namespace and folder location.

Have there been more discussions about this since? Could someone share the current thoughts so we can talk through it?

Could this be solved with CascadingValue, perhaps? A component like OwningComponentBase (let's call it `ScopedComponent`) creates a new IServiceScope and cascades that down as a CascadingValue. Any components rendered inside...

@javiercn I think the problem is that Blazor already has introduced a new idiom. On an API server a Singleton is shared by all users (as with Blazor Server), but...

What I suggest would solve all of that. 1: The user specifies in their component that this is a new scope 2: All embedded components get the same scope when...

@Sebazzz The Db connection on a DbContext is not kept open for its lifetime. It is retrieved from a pool and returned whenever you perform a DB operation. You *do*...