Home

Can't edit when using Entity Framework connection

edited September 2016
Hi everyone,

When I visualize my request as "Data Grids" I have no 'Edit Data' button. Furthermore the contextual menu from a table has only "View Top[..]" and no "View/Edit Top[..]" entries.

The connection has write rights and something like this works perfectly :

let run = dc.Runs.Where(fun r -> r.Id = 1011).First() run.Name <- "ABCD" dc.SaveChanges()

The edit buttons are visible with a "classic" LINQ to SQL connection.

Comments

Sign In or Register to comment.