19 public static class DataPortalConfigurationExtensions
24 public static CslaOptions
DataPortal(
this CslaOptions config)
34 public static CslaOptions
DataPortal(
this CslaOptions config, Action<DataPortalClientOptions> options)
36 options?.Invoke(config.DataPortalClientOptions);
45 public static DataPortalClientOptions AddServerSideDataPortal(
this DataPortalClientOptions config)
47 return AddServerSideDataPortal(config,
null);
56 public static DataPortalClientOptions AddServerSideDataPortal(
this DataPortalClientOptions config, Action<DataPortalServerOptions> options)
58 options?.Invoke(config.ServerOptions);
66 internal static void AddRequiredDataPortalServices(
this CslaOptions config)
68 var services = config.Services;
71 services.TryAddTransient((p) =>
new Channels.Local.LocalProxyOptions());
72 services.AddTransient<Channels.Local.LocalProxy, Channels.Local.LocalProxy>();
75 services.TryAddTransient(typeof(IDataPortal<>), typeof(
DataPortal<>));
76 services.TryAddTransient(typeof(IChildDataPortal<>), typeof(
DataPortal<>));
80 services.TryAddScoped(typeof(
IAuthorizeDataPortal), config.DataPortalServerOptions.AuthorizerProviderType);
81 foreach (Type interceptorType
in config.DataPortalServerOptions.InterceptorProviders)
85 services.TryAddScoped(typeof(
IObjectFactoryLoader), config.DataPortalServerOptions.ObjectFactoryLoaderType);
86 services.TryAddScoped(typeof(
IDataPortalActivator), config.DataPortalServerOptions.ActivatorType);
96 services.TryAddSingleton(typeof(Server.Dashboard.IDashboard), config.DataPortalServerOptions.DashboardType);
Get an access to a client-side data portal instance.
Get an access to a Child data portal instance.
Allows the Data Portal call to be intercepted by a custom IDataPortalServer implementation.
This class provides a hook for developers to add custom error handling in the DataPortal.
Implements the server-side DataPortal message router as discussed in Chapter 4.
Selects the appropriate data portal implementation to invoke based on the object and configuration.
Server-side data portal implementation that invokes an object factory rather than directly interactin...
Manage dataportal interception using DI-registered implementations
Implements the server-side DataPortal as discussed in Chapter 4.
Interface to be implemented by a custom authorization provider.
Defines a type used to activate concrete business instances.
Implement this interface to check a DataPortalException before returning Exception to the client.
Interface implemented by server-side data portal components.
Implement this interface to create a data portal interceptor that is notified each time the data port...
Defines an interface to be implemented by a factory loader object that returns ObjectFactory objects ...