Ejemplo n.º 1
0
 public static string GetVariableName(DataTable dataTable)
 {
     return(Namer.GetCamelCaseSingularPlural(dataTable.TableName));
 }
Ejemplo n.º 2
0
 public static string GetVariableName(DataRow dataRow)
 {
     return(Namer.GetCamelCaseSingularPlural((string)dataRow["ColumnName"]));
 }
 public static string GetCatalogTableFieldName(DataTable dataTable)
 {
     return("_" + Namer.GetCamelCaseSingularPlural(dataTable.TableName));
 }