Is it possible to query Oracle materialized view with Entity Framework model using linq?
            Asked
            
        
        
            Active
            
        
            Viewed 1,735 times
        
    1 Answers
3
            Yes. From the Entity Framework's perspective, a materialized view is a table. The only caveat is that to generate the model from the materialized view, the materialized view must have a non-nullable column that could be used as the primary key.
        Igor Pashchuk
        
- 2,455
 - 2
 - 22
 - 29
 
- 
                    Yes, i'd missed out the primary key issue on MV. Thanks this solves the problem. – eozcan Jul 30 '15 at 07:27