Can't edit when using Entity Framework connection
Options
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
-
This is because editing is not supported with Entity Framework right now, just LINQ to SQL.
-
Thanks for your answer, I wish one day this feature will come.