public static IServiceCollection AddRepositories(this IServiceCollection serviceCollection)
        {
            NullGuard.NotNull(serviceCollection, nameof(serviceCollection));

            serviceCollection.AddScoped(serviceProvider => RepositoryContext.Create(
                                            serviceProvider.GetRequiredService <IConfiguration>(),
                                            serviceProvider.GetRequiredService <IPrincipalResolver>(),
                                            serviceProvider.GetRequiredService <ILoggerFactory>()));

            TypeInfo[] classArray = typeof(RepositoryBase).Assembly.ExportedTypes
                                    .Select(exportedType => exportedType.GetTypeInfo())
                                    .Where(typeInfo => typeInfo.IsClass && typeInfo.IsAbstract == false)
                                    .ToArray();

            foreach (TypeInfo classTypeInfo in classArray)
            {
                TypeInfo[] interfaceArray = classTypeInfo.ImplementedInterfaces.Select(implementedInterface => implementedInterface.GetTypeInfo()).ToArray();
                foreach (TypeInfo interfaceTypeInfo in interfaceArray)
                {
                    if (interfaceTypeInfo.ImplementedInterfaces.Contains(typeof(IRepository)) == false)
                    {
                        continue;
                    }

                    serviceCollection.AddTransient(interfaceTypeInfo.AsType(), classTypeInfo.AsType());
                }
            }

            return(serviceCollection);
        }
Пример #2
0
        protected RepositoryContext CreateTestRepositoryContext(IPrincipal principal = null)
        {
            RepositoryContext repositoryContext = RepositoryContext.Create(
                CreateTestConfiguration(),
                CreatePrincipalResolverMock(principal).Object,
                CreateLoggerFactory());

            RegisterDisposable(repositoryContext);

            return(repositoryContext);
        }