As a bit of background, we are creating a WPF application and are using
Entity Framework 5, code-first. Our service classes return
IQueryable<MyModel>.
What we want is an editable grid that also supports inserting and deleting rows. Sorting and paging must be done at server-side.
How can we achieve this with your WPF grid?