aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/ODBCDataSourceTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/ODBCDataSourceTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/ODBCDataSourceTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/ODBCDataSourceTuple.cs b/src/WixToolset.Data/Tuples/ODBCDataSourceTuple.cs
index 7eee0b38..21a5ca9c 100644
--- a/src/WixToolset.Data/Tuples/ODBCDataSourceTuple.cs
+++ b/src/WixToolset.Data/Tuples/ODBCDataSourceTuple.cs
@@ -10,7 +10,7 @@ namespace WixToolset.Data
10 TupleDefinitionType.ODBCDataSource, 10 TupleDefinitionType.ODBCDataSource,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(ODBCDataSourceTupleFields.Component_), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(ODBCDataSourceTupleFields.ComponentRef), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(ODBCDataSourceTupleFields.Description), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(ODBCDataSourceTupleFields.Description), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(ODBCDataSourceTupleFields.DriverDescription), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(ODBCDataSourceTupleFields.DriverDescription), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(ODBCDataSourceTupleFields.Registration), IntermediateFieldType.Number), 16 new IntermediateFieldDefinition(nameof(ODBCDataSourceTupleFields.Registration), IntermediateFieldType.Number),
@@ -23,7 +23,7 @@ namespace WixToolset.Data.Tuples
23{ 23{
24 public enum ODBCDataSourceTupleFields 24 public enum ODBCDataSourceTupleFields
25 { 25 {
26 Component_, 26 ComponentRef,
27 Description, 27 Description,
28 DriverDescription, 28 DriverDescription,
29 Registration, 29 Registration,
@@ -41,10 +41,10 @@ namespace WixToolset.Data.Tuples
41 41
42 public IntermediateField this[ODBCDataSourceTupleFields index] => this.Fields[(int)index]; 42 public IntermediateField this[ODBCDataSourceTupleFields index] => this.Fields[(int)index];
43 43
44 public string Component_ 44 public string ComponentRef
45 { 45 {
46 get => (string)this.Fields[(int)ODBCDataSourceTupleFields.Component_]; 46 get => (string)this.Fields[(int)ODBCDataSourceTupleFields.ComponentRef];
47 set => this.Set((int)ODBCDataSourceTupleFields.Component_, value); 47 set => this.Set((int)ODBCDataSourceTupleFields.ComponentRef, value);
48 } 48 }
49 49
50 public string Description 50 public string Description