For future visitors: for EF6 you are probably better off using filters, for example via this project: https://github.com/jbogard/EntityFramework.Filters
In the applicati
Have you considered using views in your database to load your problem entities with the deleted items excluded?
It does mean you will need to use stored procedures to map INSERT
/UPDATE
/DELETE
functionality, but it would definitely solve your problem if Workout
maps to a View with the deleted rows omitted. Also - this may not work the same in a code first approach...