I have a table that has a db trigger which updates a field in a related table upon value from the field within the table. When this happened EF cache retained old values and users could not see any changes. Is it possible to force GetTABLE() method to read directly from db instead of ef cache?
Hi @Djordje
There could be something here you could work with -
Force EF to get data from database
Regards
Paul
Thank you. I added .AsNoTracking() to my GetTABLE method and now it works.