We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4578bfb commit b6aa9efCopy full SHA for b6aa9ef
src/MyTested.AspNetCore.Mvc.Abstractions/From.cs
@@ -1,12 +1,18 @@
1
namespace MyTested.AspNetCore.Mvc
2
{
3
+ using Internal.Application;
4
using Internal.Services;
5
6
/// <summary>
7
/// Provides easy resolving of expression method argument values from the application <see cref="System.IServiceProvider"/>.
8
/// </summary>
9
public static class From
10
11
+ static From()
12
+ {
13
+ TestApplication.TryInitialize();
14
+ }
15
+
16
17
/// Indicates that a argument should be resolved from the application <see cref="System.IServiceProvider"/> in a method call lambda expression.
18
0 commit comments