IGet 1.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package IGet --version 1.0.2
NuGet\Install-Package IGet -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="IGet" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add IGet --version 1.0.2
#r "nuget: IGet, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install IGet as a Cake Addin
#addin nuget:?package=IGet&version=1.0.2

// Install IGet as a Cake Tool
#tool nuget:?package=IGet&version=1.0.2

IGet

Say goodbye to MediatR's IRequest-IRequestHandler combination and use IGet instead: less code, more freedom.

serviceCollection.AddIGet();

Using IGet

MediatR requires declarations like this:

public class MyRequest : IRequest<MyResult>
{
    public int Id { get; set; }
}

public class MyHandler : IRequestHandler<MyRequest, MyResult>
{
    private ILogger<MyHandler> _logger;

    public MyHandler(ILogger<MyHandler> logger)
    {
        _logger = logger;
    }

    public async Task<MyResult> Handle(MyRequest request, CancellationToken cancellationToken)
    {
        // do something
    }
}

IGet allows you to use the simplest possible declaration:

public class MyHandler
{
    private ILogger<MyHandler> _logger;

    public MyHandler(ILogger<MyHandler> logger)
    {
        _logger = logger;
    }

    public MyResult AnyRandomSignature(int id)
    {
        // do something
    }
}

With IMediator you don't have compile time checks that a handler exists:

var result = await _mediator.Send(new MyRequestWithoutHandler { Id = 1 });

With IGet you have immediate verification that the handler exists in scope:

var result = _get.Get<MyHandler>().AnyRandomSignature(1);

Can IGet and MediatR be used together?

Yes. There is no need to replace old code.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on IGet:

Package Downloads
IGet.GetAll

Extends IGet. Get an IEnumerable of class instances (with their dependencies injected) via i.GetAll<IMyInterface>() or i.GetAll<MyBaseClass>(). Additional setup: serviceCollection.AddIGetAll(new [] { typeof(Startup).Assembly, ... }). See the readme for many examples.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.8 474 12/13/2023
1.1.7 105 12/13/2023
1.1.6 2,376 4/12/2023
1.1.5 734 3/29/2023
1.1.4 267 3/21/2023
1.1.3 253 3/20/2023
1.1.2 181 3/19/2023
1.1.1 274 3/16/2023
1.1.0 176 3/15/2023
1.0.14 170 3/15/2023
1.0.13 182 3/14/2023
1.0.12 185 3/14/2023
1.0.11 186 3/14/2023
1.0.10 187 3/14/2023
1.0.9 189 3/13/2023
1.0.8 186 3/13/2023
1.0.7 185 3/13/2023
1.0.6 171 3/13/2023
1.0.5 182 3/12/2023
1.0.4 193 3/12/2023
1.0.3 172 3/11/2023
1.0.2 192 3/10/2023
1.0.1 200 3/10/2023
1.0.0 198 3/10/2023
1.0.0-alpha 117 3/10/2023