aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/ODBCSourceAttributeTuple.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-22 14:45:33 -0700
committerRob Mensching <rob@firegiant.com>2019-05-23 15:43:40 -0700
commitb36433623fcac28cf620868430d49bc36fca2963 (patch)
tree08f26c45c3d80ce665eade49ee7b542bf71da81c /src/WixToolset.Data/Tuples/ODBCSourceAttributeTuple.cs
parent109ee5a02f9cec4775697b43655674fc70f4127a (diff)
downloadwix-b36433623fcac28cf620868430d49bc36fca2963.tar.gz
wix-b36433623fcac28cf620868430d49bc36fca2963.tar.bz2
wix-b36433623fcac28cf620868430d49bc36fca2963.zip
Use "Ref" instead of "_" as the reference convention
Diffstat (limited to 'src/WixToolset.Data/Tuples/ODBCSourceAttributeTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/ODBCSourceAttributeTuple.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/ODBCSourceAttributeTuple.cs b/src/WixToolset.Data/Tuples/ODBCSourceAttributeTuple.cs
index a69188a2..62fba795 100644
--- a/src/WixToolset.Data/Tuples/ODBCSourceAttributeTuple.cs
+++ b/src/WixToolset.Data/Tuples/ODBCSourceAttributeTuple.cs
@@ -10,7 +10,7 @@ namespace WixToolset.Data
10 TupleDefinitionType.ODBCSourceAttribute, 10 TupleDefinitionType.ODBCSourceAttribute,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(ODBCSourceAttributeTupleFields.DataSource_), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(ODBCSourceAttributeTupleFields.DataSourceRef), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(ODBCSourceAttributeTupleFields.Attribute), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(ODBCSourceAttributeTupleFields.Attribute), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(ODBCSourceAttributeTupleFields.Value), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(ODBCSourceAttributeTupleFields.Value), IntermediateFieldType.String),
16 }, 16 },
@@ -22,7 +22,7 @@ namespace WixToolset.Data.Tuples
22{ 22{
23 public enum ODBCSourceAttributeTupleFields 23 public enum ODBCSourceAttributeTupleFields
24 { 24 {
25 DataSource_, 25 DataSourceRef,
26 Attribute, 26 Attribute,
27 Value, 27 Value,
28 } 28 }
@@ -39,10 +39,10 @@ namespace WixToolset.Data.Tuples
39 39
40 public IntermediateField this[ODBCSourceAttributeTupleFields index] => this.Fields[(int)index]; 40 public IntermediateField this[ODBCSourceAttributeTupleFields index] => this.Fields[(int)index];
41 41
42 public string DataSource_ 42 public string DataSourceRef
43 { 43 {
44 get => (string)this.Fields[(int)ODBCSourceAttributeTupleFields.DataSource_]; 44 get => (string)this.Fields[(int)ODBCSourceAttributeTupleFields.DataSourceRef];
45 set => this.Set((int)ODBCSourceAttributeTupleFields.DataSource_, value); 45 set => this.Set((int)ODBCSourceAttributeTupleFields.DataSourceRef, value);
46 } 46 }
47 47
48 public string Attribute 48 public string Attribute