1#if NET462_OR_GREATER || NETSTANDARD2_0 || NET5_0_OR_GREATER
21 public static class ConfigurationExtensions
27 public static IServiceCollection AddCsla(
this IServiceCollection services)
29 return AddCsla(services,
null);
37 public static IServiceCollection AddCsla(
this IServiceCollection services, Action<CslaOptions> options)
40 var cslaOptions =
new CslaOptions(services);
41 options?.Invoke(cslaOptions);
44 services.AddScoped((p) => cslaOptions);
47 services.AddScoped<ApplicationContext>();
48 RegisterContextManager(services);
51 services.TryAddScoped(typeof(IRuntimeInfo), typeof(RuntimeInfo));
53 cslaOptions.AddRequiredDataPortalServices();
56 var proxyInit = services.Where(i => i.ServiceType.Equals(typeof(IDataPortalProxy))).Any();
59 cslaOptions.DataPortal((options) => options.UseLocalProxy());
65 private static void RegisterContextManager(IServiceCollection services)
67 services.AddScoped<Core.ApplicationContextAccessor>();
68 services.TryAddScoped(typeof(Core.IContextManagerLocal), typeof(Core.ApplicationContextManagerAsyncLocal));
70 var contextManagerType = typeof(Core.IContextManager);
72 var managerInit = services.Where(i => i.ServiceType.Equals(contextManagerType)).Any();
73 if (managerInit)
return;
75 if (LoadContextManager(services,
"Csla.Blazor.WebAssembly.ApplicationContextManager, Csla.Blazor.WebAssembly"))
return;
76 if (LoadContextManager(services,
"Csla.Xaml.ApplicationContextManager, Csla.Xaml"))
return;
77 if (LoadContextManager(services,
"Csla.Web.Mvc.ApplicationContextManager, Csla.Web.Mvc"))
return;
78 if (LoadContextManager(services,
"Csla.Web.ApplicationContextManager, Csla.Web"))
return;
79 if (LoadContextManager(services,
"Csla.Windows.Forms.ApplicationContextManager, Csla.Windows.Forms"))
return;
82 services.AddScoped(contextManagerType, typeof(Core.ApplicationContextManager));
85 private static bool LoadContextManager(IServiceCollection services,
string managerTypeName)
87 var managerType = Type.GetType(managerTypeName,
false);
88 if (managerType !=
null)
90 services.AddScoped(typeof(Core.IContextManager), managerType);