You can map EF objects to views instead of tables
CREATE VIEW vw_Currency AS SELECT * FROM Currency c WHERE c.IsAKDeleted=0
I worked on a system that used this approach, but was not based on EF. I have not tried this with EF
Maxim eliseev
source share