I would like to create editable DataGrid whose cells can either be read-only or editable (by DoubleClicking)... I want to save all of editted cells to database,(via Entity Framework)...
then in some columns, I need to show a combobox instead of a text field.
How do I go about achieving this?
Depends on if you using MVVM or not.
Either way you need to determine how you want to save. Is there a save button? Or are edits saved as soon as they are made. (last one is awful for your DB but up to you)
Edits produce an event you can capture. Also clicking on save button produces an event.
SAVE BUTTON So lets assume you want a save button.
Well then when the button click event occurs you would call the code to save to your db. Without knowing your db I can't really tell you much more except this should be farmed to a different thread so it doesn't happen on the UI thread. Look at Task.Run for more info.
SAVE ON EDIT Basically the same as above but you will ending up talking to your db much more often. Each keypress really, which is why it's harder on your db. Basically your trapping the keypress or keyup events and then saving the info to your DB.