Code Monkey home page Code Monkey logo

enumerableservicedecorator's Introduction

EnumerableServiceDecorator

Call all IEnumerable<T> by calling a single injected T

nuget

Codacy Badge

CodeFactor

Support

If you like this library, consider buying me a coffee.

Buy Me A Coffee

Usage

  1. Register multiple implementations of your interfaces(s)
services.AddSingleton<IMyInterface, MyImplementation1>()
    .AddSingleton<IMyInterface, MyImplementation2>()
    .AddSingleton<IMyInterface, MyImplementation3>();
  1. After all your dependencies have been added (so at the END - the order matters!) call FlattenEnumerableToSingle<T>
        services.FlattenEnumerableToSingle<IMyInterface>()
  1. Inject just one T into your class
public class MyWorker
{
  private readonly IMyInterface _myInterface;
  
  public MyWorker(IMyInterface myInterface)
  {
    _myInterface = myInterface;
  }
}
  1. Call a method on your interface. It'll automagically call the same method in all of your registered classes
_myInterface.DoSomething();
await _myInterface.DoSomethingElseAsync();

The above will essentially do:

MyImplementation1.DoSomething();
MyImplementation2.DoSomething();
MyImplementation3.DoSomething();

await MyImplementation1.DoSomethingElseAsync();
await MyImplementation2.DoSomethingElseAsync();
await MyImplementation3.DoSomethingElseAsync();
  1. Enjoy!

Caveats

The type to be flattened must be an interface.

This doesn't support Properties in your interfaces. There's no way to return multiple implementations of a property in just a single property.

The same with methods with return types. We can't turn an IEnumerable into a T.

So we can only support interfaces with methods that return void or Task.

enumerableservicedecorator's People

Contributors

asos-tomlonghurst avatar thomhurst avatar

Watchers

 avatar  avatar

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.