From ff99718c7f6dd09b6d42c9ef201955cedd81ad86 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Wed, 4 Mar 2020 18:58:35 -0500 Subject: To make it easier to associate tuples with tables... ...add TupleDefinitionName to TableDefinition. --- .../WindowsInstaller/TableDefinition.cs | 26 ++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs b/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs index 4738ac82..527199b2 100644 --- a/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs +++ b/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs @@ -27,17 +27,35 @@ namespace WixToolset.Data.WindowsInstaller public TableDefinition(string name, IEnumerable columns, bool unreal = false) { this.Name = name; + this.TupleDefinitionName = name; this.Unreal = unreal; - this.Columns = columns.ToArray(); } + /// + /// 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) : this(name, columns, unreal) + { + this.TupleDefinitionName = tupleDefinitionName ?? name; + } + /// /// Gets the name of the table. /// /// Name of the table. public string Name { get; private set; } + /// + /// Gets the name of the tuple definition associated with this table. + /// + /// Name of the tuple definition. + public string TupleDefinitionName { get; private set; } + /// /// Gets if the table is unreal. /// @@ -110,6 +128,7 @@ namespace WixToolset.Data.WindowsInstaller { var empty = reader.IsEmptyElement; string name = null; + string tupleDefinitionName = null; var unreal = false; var bootstrapperApplicationData = false; @@ -120,6 +139,9 @@ namespace WixToolset.Data.WindowsInstaller case "name": name = reader.Value; break; + case "tupleDefinitionName": + tupleDefinitionName = reader.Value; + break; case "unreal": unreal = reader.Value.Equals("yes"); break; @@ -176,7 +198,7 @@ namespace WixToolset.Data.WindowsInstaller } } - return new TableDefinition(name, columns.ToArray(), unreal); + return new TableDefinition(name, tupleDefinitionName, columns.ToArray(), unreal); } /// -- cgit v1.2.3-55-g6feb