Table of Contents

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

EndpointCalculations bool

If true, calculated property evaluation were skipped on the client and should be run on the server.

EndpointHooks bool

If 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

bool

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; }

Property Value

bool