From b36433623fcac28cf620868430d49bc36fca2963 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 22 May 2019 14:45:33 -0700 Subject: Use "Ref" instead of "_" as the reference convention --- src/WixToolset.Data/Tuples/ODBCSourceAttributeTuple.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/WixToolset.Data/Tuples/ODBCSourceAttributeTuple.cs') 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 TupleDefinitionType.ODBCSourceAttribute, new[] { - new IntermediateFieldDefinition(nameof(ODBCSourceAttributeTupleFields.DataSource_), IntermediateFieldType.String), + new IntermediateFieldDefinition(nameof(ODBCSourceAttributeTupleFields.DataSourceRef), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(ODBCSourceAttributeTupleFields.Attribute), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(ODBCSourceAttributeTupleFields.Value), IntermediateFieldType.String), }, @@ -22,7 +22,7 @@ namespace WixToolset.Data.Tuples { public enum ODBCSourceAttributeTupleFields { - DataSource_, + DataSourceRef, Attribute, Value, } @@ -39,10 +39,10 @@ namespace WixToolset.Data.Tuples public IntermediateField this[ODBCSourceAttributeTupleFields index] => this.Fields[(int)index]; - public string DataSource_ + public string DataSourceRef { - get => (string)this.Fields[(int)ODBCSourceAttributeTupleFields.DataSource_]; - set => this.Set((int)ODBCSourceAttributeTupleFields.DataSource_, value); + get => (string)this.Fields[(int)ODBCSourceAttributeTupleFields.DataSourceRef]; + set => this.Set((int)ODBCSourceAttributeTupleFields.DataSourceRef, value); } public string Attribute -- cgit v1.2.3-55-g6feb