how do people deal with extra data needed to render a list.
eg I have a IList<User> Users
that is a property on my viewmodel. However for each row in the user table, extra information needs to be displayed.
should i create a display model for User
with the other properties included on it?
any ideas would be greatly appreciated?