@@ -271,7 +271,7 @@ public static void GenerateTable(string fileName, Options opts, string tableName
271
271
{
272
272
foreach ( var dataTable in dataTableEx )
273
273
{
274
- GenerateCsAndJson ( fileName , dataTable . Value . Target . ToCamelCase ( ) , tableName , opts , dataTable . Value ! . DataTable ! , dataTable . Value ! . DataTypes ! ) ;
274
+ GenerateCsAndJson ( fileName , dataTable . Value . Target , tableName , opts , dataTable . Value ! . DataTable ! , dataTable . Value ! . DataTypes ! ) ;
275
275
}
276
276
}
277
277
else
@@ -280,21 +280,21 @@ public static void GenerateTable(string fileName, Options opts, string tableName
280
280
{
281
281
foreach ( var dataTable in dataTableEx )
282
282
{
283
- dataTable . Value ! . DataTable ! . ValidateValue ( dataTable . Value . Target . ToCamelCase ( ) , dataTable . Value ! . DataTypes ! ) ;
283
+ dataTable . Value ! . DataTable ! . ValidateValue ( dataTable . Value . Target , dataTable . Value ! . DataTypes ! ) ;
284
284
285
285
if ( ! tableName . StartsWith ( "Const" ) )
286
286
{
287
- dataTable . Value ! . DataTable ! . ValidateReference ( dataTable . Value . Target . ToCamelCase ( ) , dataTable . Value ! . DataTypes ! ) ;
287
+ dataTable . Value ! . DataTable ! . ValidateReference ( dataTable . Value . Target , dataTable . Value ! . DataTypes ! ) ;
288
288
289
- dataTable . Value ! . DataTable ! . ValidateReferenceEnum ( dataTable . Value . Target . ToCamelCase ( ) , dataTable . Value ! . DataTypes ! ) ;
289
+ dataTable . Value ! . DataTable ! . ValidateReferenceEnum ( dataTable . Value . Target , dataTable . Value ! . DataTypes ! ) ;
290
290
291
- dataTable . Value ! . DataTable ! . ValidateSubIndex ( dataTable . Value . Target . ToCamelCase ( ) , dataTable . Value ! . DataTypes ! ) ;
291
+ dataTable . Value ! . DataTable ! . ValidateSubIndex ( dataTable . Value . Target , dataTable . Value ! . DataTypes ! ) ;
292
292
293
- dataTable . Value ! . DataTable ! . ValidationProbability ( dataTable . Value . Target . ToCamelCase ( ) , dataTable . Value ! . DataTypes ! ) ;
293
+ dataTable . Value ! . DataTable ! . ValidationProbability ( dataTable . Value . Target , dataTable . Value ! . DataTypes ! ) ;
294
294
}
295
295
else
296
296
{
297
- dataTable . Value ! . DataTable ! . ValidationConst ( dataTable . Value . Target . ToCamelCase ( ) , dataTable . Value ! . DataTypes ! ) ;
297
+ dataTable . Value ! . DataTable ! . ValidationConst ( dataTable . Value . Target , dataTable . Value ! . DataTypes ! ) ;
298
298
}
299
299
}
300
300
}
0 commit comments