TriggerColumnInfo

Classes > Sync.Postgres > TriggerColumnInfo

Column information for trigger generation.

public sealed record TriggerColumnInfo : IEquatable<TriggerColumnInfo>

Constructors

TriggerColumnInfo

public TriggerColumnInfo(string Name, string Type, bool IsPrimaryKey)

Column information for trigger generation.

Parameter Type Description
Name String Column name.
Type String Column type.
IsPrimaryKey Boolean Whether this is the primary key.

Properties

Name

public string Name { get; init; }

Column name.

Type

public string Type { get; init; }

Column type.

IsPrimaryKey

public bool IsPrimaryKey { get; init; }

Whether this is the primary key.