File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
DataWarehouseAutomation/DataWarehouseAutomation/DwaModel Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,12 @@ public class Cardinality
24
24
/// <summary>
25
25
/// The 'from' component in the cardinality, e.g. the '1' in 1 to many.
26
26
/// </summary>
27
- public CardinalityRange FromRange { get ; set ; } = new CardinalityRange { Min = 1 , Max = "1" } ;
27
+ public CardinalityRange FromRange { get ; set ; } = new CardinalityRange { Min = "1" , Max = "1" } ;
28
28
29
29
/// <summary>
30
30
/// The 'to' component in the cardinality, e.g. the 'many' in 1 to many.
31
31
/// </summary>
32
- public CardinalityRange ToRange { get ; set ; } = new CardinalityRange { Min = 1 , Max = "N" } ;
32
+ public CardinalityRange ToRange { get ; set ; } = new CardinalityRange { Min = "1" , Max = "N" } ;
33
33
34
34
/// <summary>
35
35
/// Free-form and optional classification for the Data Item for use in generation logic (evaluation).
You can’t perform that action at this time.
0 commit comments