I have this column in the database
enddate DATETIME NULL
Entity Framework translated it to
DateTime? ENDDATE
I have a column in my DataGrid
<DataGridCheckBoxColumn
Binding="{Binding Path=ENDDATE.HasValue}"
Header="Concluded?" />
But it doesn't work. How to do it?
This works for me using Mvvm Light: