Hi.
I have SQL Server database that is connected to my WPF desktop-based application via ADO.NET Entity Framework.

Now I need get content of one of the table via LINQ query and show it in DataGrid control. Also, I need to let user to edit or delete data from DataGrid and update my database according this change.

Here is a LINQ query:
Code:
from d in App.glidusContext.tbl_users
select new { d.userID,
...