I have two objects: ES1 is a collection and ES2 is a single entity
ES1 is a view that joins two tables [Apps] and [Loans] and returns only a few columns but many records that meet a criteria
ES2 is a record from a table [Apps]
ES1 is used to display a grid of items that need to be updated. ES2 is the object I use to update the data.
When I update the data using ES2, how can I tell ES1 to reload the current entity only so that the changes are reflected in the grid. I don't want to hit the database for all the records again if I can avoid it.