Struct CommandOptions
- Namespace
- The.Persistence.Write
- Assembly
- Instagile.dll
Settings affecting write execution on the server, controlling which parts of entity-save execution have been delegated to the server.
[MessagePackObject(false)]
public record struct CommandOptions : IEquatable<CommandOptions>
- Implements
- Inherited Members
Constructors
CommandOptions(bool, bool)
Settings affecting write execution on the server, controlling which parts of entity-save execution have been delegated to the server.
public CommandOptions(bool EndpointCalculations, bool EndpointHooks)
Parameters
EndpointCalculationsboolIf true, calculated property evaluation were skipped on the client and should be run on the server.
EndpointHooksboolIf true, OnSaved/OnSaving callbacks were skipped on the client and should be run on the server.
Properties
EndpointCalculations
If true, calculated property evaluation were skipped on the client and should be run on the server.
[Key(0)]
public bool EndpointCalculations { readonly get; set; }
Property Value
EndpointHooks
If true, OnSaved/OnSaving callbacks were skipped on the client and should be run on the server.
[Key(1)]
public bool EndpointHooks { readonly get; set; }