Create a Database View using Entity Framework (EF) Code First Approach

How to create a database view using Entity Framework Code first approach? User case scenario: There are several cases that the aplications may need to display the data by combiniting two or more tables, sometimes even more than 7-8 tables. In such scenario, using entity framework may results in slow performance beacause we need to process by selecting data from a table then running loop … Continue reading Create a Database View using Entity Framework (EF) Code First Approach