Dynamic Schema/Type -table column name in the original name
I created a job in which I have to read from a DB table and write into another DB table.
I have to do this operation for almost 20 tables. So I am using Dynamic Type to achieve this instead of defining each table schema manually. The problem with Dynamic Type is that it creates all column names in the Upper case. For eg
Original column name-
EmpName,DeptLocReg,JoinDate
Column name created by Dynamic Type-
EMPNAME,DEPTLOCREG,JOINDATE
Is there a way to get the same original column names ie in
camelcase(EmpName,DeptLocReg,JoinDate )