I often have DateTime fields which I need to display in the Grid. Many times I separate out the Date (short Date) and Time using a custom cell template but re-use the same DB field in the Grid. This is so I can group by Month/Day/Time etc.
The new version of the Grid (v.3.0) will not allow this - apparently because of the new Column Virtualization is using the Field Name in an internal collection. If I have two columns bound to the same field name, I now get an exception saying the Key is already part of the collection.
Ooops!
Only a minor inconviencience, I'm now just retreiving the Date 2x with different names and the problem goes away. But I sure don't like to retreive DB data if I don't have to...