aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/SqlStringTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples/SqlStringTuple.cs')
-rw-r--r--src/wixext/Tuples/SqlStringTuple.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/Tuples/SqlStringTuple.cs b/src/wixext/Tuples/SqlStringTuple.cs
index 77882d33..7a73f271 100644
--- a/src/wixext/Tuples/SqlStringTuple.cs
+++ b/src/wixext/Tuples/SqlStringTuple.cs
@@ -78,9 +78,9 @@ namespace WixToolset.Sql.Tuples
78 set => this.Set((int)SqlStringTupleFields.Attributes, value); 78 set => this.Set((int)SqlStringTupleFields.Attributes, value);
79 } 79 }
80 80
81 public int Sequence 81 public int? Sequence
82 { 82 {
83 get => this.Fields[(int)SqlStringTupleFields.Sequence].AsNumber(); 83 get => this.Fields[(int)SqlStringTupleFields.Sequence].AsNullableNumber();
84 set => this.Set((int)SqlStringTupleFields.Sequence, value); 84 set => this.Set((int)SqlStringTupleFields.Sequence, value);
85 } 85 }
86 } 86 }