Class CommandConfig
- Namespace
- The.Persistence
- Assembly
- Instagile.dll
Settings affecting write execution.
[MessagePackObject(false)]
public record CommandConfig : IEquatable<CommandConfig>
- Inheritance
-
CommandConfig
- Implements
- Inherited Members
Constructors
CommandConfig(Tenancy, bool, bool)
Settings affecting write execution.
public CommandConfig(Tenancy Tenancy, bool UseEndpointCalculations, bool UseEndpointHooks)
Parameters
TenancyTenancyRow-based access controls for the store to apply.
UseEndpointCalculationsboolIf true, calculated property evaluation was skipped on the client and should be run on the server.
UseEndpointHooksboolIf true, OnSaved/OnSaving callbacks were skipped on the client and should be run on the server.
Properties
Tenancy
Row-based access controls for the store to apply.
[Key(0)]
public Tenancy Tenancy { get; init; }
Property Value
UseEndpointCalculations
If true, calculated property evaluation was skipped on the client and should be run on the server.
[Key(1)]
public bool UseEndpointCalculations { get; init; }
Property Value
UseEndpointHooks
If true, OnSaved/OnSaving callbacks were skipped on the client and should be run on the server.
[Key(2)]
public bool UseEndpointHooks { get; init; }