terrajobst / nquery-vnext

A Roslyn inspired rewrite of NQuery
MIT License
72 stars 16 forks source link

Fix InvalidCastException as DataGridComboBoxColumn cannot be cast to … #4

Closed dallmair closed 7 years ago

dallmair commented 7 years ago

…DataGridBoundColumn.

terrajobst commented 7 years ago

How does the DataGridComboBoxColumn end up in the grid?

dallmair commented 7 years ago

Oops, forgot to post the link from this side of the project wall to the other side, sorry: As issues are still disabled here, I posted the corresponding issue to the old project in order to track it at all: https://github.com/terrajobst/nquery/issues/36

Whenever you end up with an enum column in the grid, it generates a DataGridComboBoxColumn instead of a DataGridBoundColumn.

terrajobst commented 7 years ago

As issues are still disabled here

Ah, good point. Enabled now.

Whenever you end up with an enum column in the grid, it generates a DataGridComboBoxColumn instead of a DataGridBoundColumn.

Interesting, that makes sense then.