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/ODBCDataSourceTuple.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/WixToolset.Data/Tuples/ODBCDataSourceTuple.cs') 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 TupleDefinitionType.ODBCDataSource, new[] { - new IntermediateFieldDefinition(nameof(ODBCDataSourceTupleFields.Component_), IntermediateFieldType.String), + new IntermediateFieldDefinition(nameof(ODBCDataSourceTupleFields.ComponentRef), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(ODBCDataSourceTupleFields.Description), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(ODBCDataSourceTupleFields.DriverDescription), IntermediateFieldType.String), new IntermediateFieldDefinition(nameof(ODBCDataSourceTupleFields.Registration), IntermediateFieldType.Number), @@ -23,7 +23,7 @@ namespace WixToolset.Data.Tuples { public enum ODBCDataSourceTupleFields { - Component_, + ComponentRef, Description, DriverDescription, Registration, @@ -41,10 +41,10 @@ namespace WixToolset.Data.Tuples public IntermediateField this[ODBCDataSourceTupleFields index] => this.Fields[(int)index]; - public string Component_ + public string ComponentRef { - get => (string)this.Fields[(int)ODBCDataSourceTupleFields.Component_]; - set => this.Set((int)ODBCDataSourceTupleFields.Component_, value); + get => (string)this.Fields[(int)ODBCDataSourceTupleFields.ComponentRef]; + set => this.Set((int)ODBCDataSourceTupleFields.ComponentRef, value); } public string Description -- cgit v1.2.3-55-g6feb