Class SchemaStateRecord
A single row from the __schema_state sentinel table.
public record SchemaStateRecord : IEquatable<SchemaStateRecord>
- Inheritance
-
SchemaStateRecord
- Implements
- Inherited Members
Constructors
SchemaStateRecord(string, string, SchemaSyncStatus, string, string?, DateTime, string?)
A single row from the __schema_state sentinel table.
public SchemaStateRecord(string TableName, string SchemaCrc, SchemaSyncStatus Status, string SyncMode, string? AppVersion, DateTime UpdatedAt, string? UpdatedByNode)
Parameters
TableNamestringSchemaCrcstringStatusSchemaSyncStatusSyncModestringAppVersionstringUpdatedAtDateTimeUpdatedByNodestring
Properties
AppVersion
public string? AppVersion { get; init; }
Property Value
SchemaCrc
public string SchemaCrc { get; init; }
Property Value
Status
public SchemaSyncStatus Status { get; init; }
Property Value
SyncMode
public string SyncMode { get; init; }
Property Value
TableName
public string TableName { get; init; }
Property Value
UpdatedAt
public DateTime UpdatedAt { get; init; }
Property Value
UpdatedByNode
public string? UpdatedByNode { get; init; }