How to make two way-databinding using EF in winforms?
问题 I am very new at coding. Now I am going to tell you about my current situation and where I wanna go. Hope you will help. I am using EF5.0 database first approach and I want to be able to use gridviews for listing and updating the database values. Currently I am binding my data like this: pehlivan_kabametrajEntities ctx = new pehlivan_kabametrajEntities(); var result = from k in ctx.Kolons select k; dataGridView1.DataSource = result.ToList(); This code lists my data perfectly. However it is