Skip to content

CardinalityRange

Namespace: DataWarehouseAutomation.DwaModel
Assembly: DataWarehouseAutomation.dll

The possible range for a from/to component for the cardinality. For example “min”: “1”, “max”: “N” This way, you can define “at least 1 to many”. Or “0 or 1 to 1”.

public class CardinalityRange

objectCardinalityRange

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()

[JsonPropertyName("max")]
public string? Max { get; set; }

string?

[JsonPropertyName("min")]
public string? Min { get; set; }

string?