/// <summary>
 /// Build a unit of work module
 /// </summary>
 public void Build(IocRegisterBase iocRegister)
 {
     iocRegister.Register <UnitOfWorkOptions>();
     iocRegister.RegisterAssemblyByBasicInterface(typeof(UnitOfWorkCoreOptionsBuilder).Assembly);
     iocRegister.RegisterInterceptor <UnitOfWorkInterceptor>(
         implementationType =>
     {
         if (implementationType.IsDefined(typeof(UnitOfWorkAttribute), true))
         {
             return(true);
         }
         var methods = implementationType.GetMethods(
             BindingFlags.Instance |
             BindingFlags.Public |
             BindingFlags.NonPublic);
         if (methods.Any(m => m.IsDefined(typeof(UnitOfWorkAttribute), true)))
         {
             return(true);
         }
         return(false);
     });
 }
Exemple #2
0
        protected IIocResolver GetIocResolver(IocRegisterBase iocRegister)
        {
            var serviceProvider = iocRegister.GetServiceProvider(new ServiceCollection());

            return(serviceProvider.GetService <IIocResolver>());
        }