Giter Club home page Giter Club logo

Comments (6)

YairHalberstadt avatar YairHalberstadt commented on September 22, 2024 1

I think Func<B> is definitely wrong - I don't want to be putting diagnostics on perfectly valid user code, because somewhere else decided to register it with StrongInject. Registration code should change to reflect business code, not the other way round.

[Register(typeof(A))] is an option, but it's kind of weird. Firstly there's not always a clear place to put it (e.g. different assemblies, multiple locations which register the same type, etc.). Secondly the same registration on a module might be used by multiple containers, only one of which leads to an issue, so there's nothing wrong with the registration. Thirdly it doesn't even fully solve your problem. The same type might have multiple delegate arguments, and you would have to suppress them all together.

Also the complexity of this change is very high. We have to associate every InstanceSource with a unique location and put the diagnostic there. I don't really want to do this for something which I'm just not really sure is the correct solution semantically.

I understand the problem that you're trying to solve. I just don't really have a good solution.

from stronginject.

jnm2 avatar jnm2 commented on September 22, 2024

If that feels like the wrong place, maybe it would be better to place it on the attribute which registered the type declaring the parameter.

from stronginject.

YairHalberstadt avatar YairHalberstadt commented on September 22, 2024

Neither of those feel like the right place as both could be in a completely separate assembly.

from stronginject.

jnm2 avatar jnm2 commented on September 22, 2024

What about leaving the current behavior as a fallback in the case where it's not all in the same assembly?

from stronginject.

YairHalberstadt avatar YairHalberstadt commented on September 22, 2024

Even then, philosophically it feels the wrong place.

Consider the following two modules:

public record A(Func<B> b);
public record B();

[Register(typeof(A))]
public class Module1{}

[Register(typeof(B), Scope.SingleInstance)]
public class Module2{}

On it's own both of those modules are absolutely fine. It's only when we put the two together in a container that we have a problem.

from stronginject.

jnm2 avatar jnm2 commented on September 22, 2024

I'd see Func<B> as a logical place in that scenario, even though it would only appear when something in the same project puts the two modules together.

from stronginject.

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.