diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-13 18:55:48 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-13 18:55:48 +1000 |
commit | 10f90c4a1fbac76278c3cccd565f7767060c8d5c (patch) | |
tree | 70435fd2478bcb39aa35f1e506597e0ed50069b4 /src/wixext/Tuples/SqlStringTuple.cs | |
parent | 2df59141a12979c9869ad2e62d01e9f7432e2f7c (diff) | |
download | wix-10f90c4a1fbac76278c3cccd565f7767060c8d5c.tar.gz wix-10f90c4a1fbac76278c3cccd565f7767060c8d5c.tar.bz2 wix-10f90c4a1fbac76278c3cccd565f7767060c8d5c.zip |
Update dependencies.
Diffstat (limited to 'src/wixext/Tuples/SqlStringTuple.cs')
-rw-r--r-- | src/wixext/Tuples/SqlStringTuple.cs | 4 |
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 | } |