Home

Can we edit referenced data when referencing an EF Core assembly?

When we reference an EF Core assembly, and do something like...

Customers.Include(c => c.Orders).Single(c => c.Id == 3).Orders

...then the "Edit Data" button doesn't show above the results like it does when using Linq2Sql.

Is there a way to edit the data with an EF Core assembly? Thanks

Comments

Sign In or Register to comment.