You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var data = Db.Query<dynamic>(query, new { idChanges });
var abbrs = new Dictionary<string, string>();
abbrs.Add("MaterialGroup_Ums", "MaterialGroup_UnitOfMeasurement");
abbrs.Add("Pressure_Ums", "Pressure_UnitOfMeasurement");
data = Abbreviations.Rename(data, abbrs);
This class will renames MaterialGroup_Ums to MaterialGroup_UnitOfMeasurement
Oracle has limits to alias name. This limit is 30 characters.
Is possible to add support short name to alias? For example:
MyTable_Items_Msnt_Id
MyTable_Items_Msnt_Name
During the mapping replace MyTable_Items_Msnt_ to MyTable_Items_UnitOfMeasurement.
The text was updated successfully, but these errors were encountered: