From 494a3f66905381e3f65faefeed7f5224fcf42860 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Sun, 5 Apr 2020 21:28:19 +1000 Subject: Make TupleIdIsPrimaryKey configurable. --- .../WindowsInstaller/TableDefinition.cs | 24 ++++++++-------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs b/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs index 9740b89b..5a9d2f20 100644 --- a/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs +++ b/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs @@ -24,18 +24,9 @@ namespace WixToolset.Data.WindowsInstaller /// Name of table to create. /// Column definitions for the table. /// Flag if table is unreal. - public TableDefinition(string name, IEnumerable columns, bool unreal = false) : this(name, null, columns, unreal) - { - } - - /// - /// Creates a table definition. - /// - /// Name of table to create. /// Optional name of tuple definition for this table. - /// Column definitions for the table. - /// Flag if table is unreal. - public TableDefinition(string name, string tupleDefinitionName, IEnumerable columns, bool unreal = false) + /// Whether the primary key is the id of the tuple definition associated with this table. + public TableDefinition(string name, IEnumerable columns, bool unreal = false, string tupleDefinitionName = null, bool? tupleIdIsPrimaryKey = null) { this.Name = name; this.TupleDefinitionName = tupleDefinitionName ?? name; @@ -46,7 +37,7 @@ namespace WixToolset.Data.WindowsInstaller { throw new ArgumentOutOfRangeException(nameof(columns)); } - this.TupleIdIsPrimaryKey = DeriveTupleIdIsPrimaryKey(this.Columns); + this.TupleIdIsPrimaryKey = tupleIdIsPrimaryKey ?? DeriveTupleIdIsPrimaryKey(this.Columns); } /// @@ -141,7 +132,7 @@ namespace WixToolset.Data.WindowsInstaller string name = null; string tupleDefinitionName = null; var unreal = false; - var bootstrapperApplicationData = false; + bool? tupleIdIsPrimaryKey = null; while (reader.MoveToNextAttribute()) { @@ -153,6 +144,9 @@ namespace WixToolset.Data.WindowsInstaller case "tupleDefinitionName": tupleDefinitionName = reader.Value; break; + case "tupleIdIsPrimaryKey": + tupleIdIsPrimaryKey = reader.Value.Equals("yes"); + break; case "unreal": unreal = reader.Value.Equals("yes"); break; @@ -198,7 +192,7 @@ namespace WixToolset.Data.WindowsInstaller } } - if (!unreal && !bootstrapperApplicationData && !hasPrimaryKeyColumn) + if (!unreal && !hasPrimaryKeyColumn) { throw new WixException(ErrorMessages.RealTableMissingPrimaryKeyColumn(SourceLineNumber.CreateFromUri(reader.BaseURI), name)); } @@ -209,7 +203,7 @@ namespace WixToolset.Data.WindowsInstaller } } - return new TableDefinition(name, tupleDefinitionName, columns.ToArray(), unreal); + return new TableDefinition(name, columns.ToArray(), unreal, tupleDefinitionName, tupleIdIsPrimaryKey); } /// -- cgit v1.2.3-55-g6feb