Giter Site home page Giter Site logo

Comments (7)

dadhi avatar dadhi commented on May 23, 2024

@TheHunter By default it is fine to have Transient for any kind of Scoped consumer. Because Transient means that service is likely stateless and can be recreated whenever it needed.
You may alter this behavior via Rules.WithThrowIfScopedOrSingletonHasTransientDependency().

from dryioc.

TheHunter avatar TheHunter commented on May 23, 2024

hi @dadhi,
thank you for your suggestion, but It seems it's only possible to use rules on IContainer instance, so as a global rule for all registrations in the container, but not for single registration, right?

It would be worth to turn on this rule (WithThrowIfScopedOrSingletonHasTransientDependency) only for some services, what do you think about it?

In my case, we apply some strong rules for lifestyles dependencies, but only for external registrations, so for them we would turn off the default rule.

from dryioc.

dadhi avatar dadhi commented on May 23, 2024

Huh, ok.
Then what services do you mark with this new rule, the Transients or the consuming Scoped ones?

from dryioc.

TheHunter avatar TheHunter commented on May 23, 2024

Hi @dadhi,
I think the Transient ones, in general I think only the dependencies should be marked, in order to turn on the rule "WithThrowIfScopedOrSingletonHasTransientDependency".

In fact, i think something like this could be resolved this situation:

IContainer container = new Container();

container.Register<IMyService, MyService>(Reuse.Transient, reuse: Rules.WithThrowIfScopedOrSingletonHasTransientDependency());
container.Register<IRootService, RootService>(Reuse.Singleton);

var service = container.Resolve<IRootService>();

What do you think about?

Sorry for this delay on this response

from dryioc.

dadhi avatar dadhi commented on May 23, 2024

@TheHunter Yes, it kinda makes sense because we already have Setup.TrackDisposableTransient, Setup.AllowDisposableTransient

from dryioc.

TheHunter avatar TheHunter commented on May 23, 2024

Hi @dadhi ,
do you think It would be possible to implement the overload as proposed ?

Or if you have other suggestion, It would be appreciated.

Thanks in advance.

from dryioc.

dadhi avatar dadhi commented on May 23, 2024

@dadhi Yeah, I went to other stuff in meanwhile. I will look into this soon.

from dryioc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.