CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
DataPortalConfigurationExtensions.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="CslaDataPortalConfiguration.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Use this type to configure the settings for CSLA .NET</summary>
7//-----------------------------------------------------------------------
8using System;
10using Csla.Server;
13
14namespace Csla.Configuration
15{
19 public static class DataPortalConfigurationExtensions
20 {
24 public static CslaOptions DataPortal(this CslaOptions config)
25 {
26 return DataPortal(config, null);
27 }
28
34 public static CslaOptions DataPortal(this CslaOptions config, Action<DataPortalClientOptions> options)
35 {
36 options?.Invoke(config.DataPortalClientOptions);
37 return config;
38 }
39
45 public static DataPortalClientOptions AddServerSideDataPortal(this DataPortalClientOptions config)
46 {
47 return AddServerSideDataPortal(config, null);
48 }
49
56 public static DataPortalClientOptions AddServerSideDataPortal(this DataPortalClientOptions config, Action<DataPortalServerOptions> options)
57 {
58 options?.Invoke(config.ServerOptions);
59 return config;
60 }
61
66 internal static void AddRequiredDataPortalServices(this CslaOptions config)
67 {
68 var services = config.Services;
69
70 // LocalProxy must always be available to support RunLocal
71 services.TryAddTransient((p) => new Channels.Local.LocalProxyOptions());
72 services.AddTransient<Channels.Local.LocalProxy, Channels.Local.LocalProxy>();
73
74 // Data portal API defaults
75 services.TryAddTransient(typeof(IDataPortal<>), typeof(DataPortal<>));
76 services.TryAddTransient(typeof(IChildDataPortal<>), typeof(DataPortal<>));
77 services.TryAddTransient<IDataPortalFactory, DataPortalFactory>();
78 services.TryAddTransient<IChildDataPortalFactory, ChildDataPortalFactory>();
79
80 services.TryAddScoped(typeof(IAuthorizeDataPortal), config.DataPortalServerOptions.AuthorizerProviderType);
81 foreach (Type interceptorType in config.DataPortalServerOptions.InterceptorProviders)
82 {
83 services.AddScoped(typeof(IInterceptDataPortal), interceptorType);
84 }
85 services.TryAddScoped(typeof(IObjectFactoryLoader), config.DataPortalServerOptions.ObjectFactoryLoaderType);
86 services.TryAddScoped(typeof(IDataPortalActivator), config.DataPortalServerOptions.ActivatorType);
87 services.TryAddScoped(typeof(IDataPortalExceptionInspector), config.DataPortalServerOptions.ExceptionInspectorType);
88
89 services.TryAddScoped<DataPortalExceptionHandler>();
90 services.TryAddTransient(typeof(IDataPortalServer), typeof(DataPortal));
91 services.TryAddScoped<InterceptorManager>();
92 services.TryAddTransient<DataPortalSelector>();
93 services.TryAddTransient<SimpleDataPortal>();
94 services.TryAddTransient<FactoryDataPortal>();
95 services.TryAddTransient<DataPortalBroker>();
96 services.TryAddSingleton(typeof(Server.Dashboard.IDashboard), config.DataPortalServerOptions.DashboardType);
97 }
98 }
99}
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.
Definition: DataPortal.cs:24
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 ...