Rohan_P
(Rohan P)
1
I am fetching the data from the external mysql db, I fetch the FirstName from Persons table, store it in the list and return the list,
the output i get has the label as FirstName itself, is there a way to rename FirstName to Name?
Is there any better way than this?
sergey.kuk
(Sergii Kukurudziak)
2
No, there is no better way. And this a good approach to rename the property. Other way is to create a View
in the mysql and search in the View
Rohan_P
(Rohan P)
3
Okay, Thank You @sergey.kuk