DEV Community

Discussion on: Should I use SQL Views With ORM frameworks?

Collapse
 
rramname profile image
Rohit Ramname

Absolutely. View without built in filters is always a good idea over directly referencing tables especially with EF. This way we dont have to worry about table changes like adding non null column (This could bite us in case of inserts with direct table references).