blahDL

Results 2 issues of blahDL

I am using Scrutor to register pipeline behaviours for MediatR which is working perfectly with the following code ``` builder.Services.Scan(scan => scan.FromAssemblyOf() .AddClasses(cls => cls.AssignableTo(typeof(IPipelineBehavior))) .AsImplementedInterfaces() .WithScopedLifetime() ); ``` I...

When making use of the functions provided by classes such as `SymbolsFunctions` in C# code we have to cast the type back to the original type to access additional properties...

enhancement