Can't edit when using Entity Framework connection
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 :
The edit buttons are visible with a "classic" LINQ to SQL connection.
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