I am using the Massive ORM for a wpf application. I have screen with listview and needs to be populated with two tables (one being master data). E.g. I am populating the list of Employees and Salaries along with the Department name in a single listview. The employee table consists of the department ID only. I should be able to update the Salaries of the employees. I have populated the listview with join. But when I try to update the entire list it throws me error that department name column is not available which is obvious.
Question
How can I remove a column from the 'dynamic' list?
Is there a better way to update all the rows using Massive ORM?
Thank you Shankara Narayanan.