I was going through Asp.Net MVC lesson and learned that, for a method to qualify as an action for …
c# .net generics open-genericsHow do I get all types that implementing a specific open generic type? For instance: public interface IUserRepository : IRepository<…
c# generics reflection open-genericsI'm new to Autofac (not to DI). Here is the situation: I have these interfaces: public interface IQuery<out …
c# dependency-injection inversion-of-control autofac open-genericsSay I have the following interface for exposing a paged list public interface IPagedList<T> { IEnumerable<T&…
c# design-patterns generics interface open-genericsI am able to register FluentValidation AbstractValidators using a FluentValidatorFactory. However, it doesn't feel right, because not all of the …
dependency-injection fluentvalidation fluentvalidation-2.0 open-generics simple-injector