I have two tables in the DB,
I have used a view in order to map them into one object in my application (using EF)
howw can I perform save() to this view?
will EfContect.SaveChanges(); be enough?
Or should I get both relevant items (2 tables)
modify them according to the view’s change and then apply EfContect.SaveChanges(); ?
Making an Updateable View Accept Updates in ADO.NET Entities Framework: