martytheman wrote:
Is it possible to use "updatable views"? In SQL Server management studio you can have a view that only contains a subset of the fields needed.
A use case for this would be where you have
- a product list with approx. 10 fields ( just a subset of all fields ) and update what you need
- the full product if you are editing a single product that contains large fields that contain HTML / descriptive text that you don't need to load / update with every change of some fields with the list.
You can save to a view (tho you have to switch the allowed actions on the mapping of the entity to create-retrieve-update-delete, otherwise it's seen as readonly. Updating a view might require you to write update triggers on the view tho, but that's up to you.