I have a SQL database view which I want to define a code for it in Entity Framework. The view is going to be shown in my web page.
The thing is that I am not sure if I will like to add some more columns in the future to the DB view. These columns are not identified now and I do not know currently what they will be (if I will add them).
I want to allow flexibility to add columns to DB view and that the view in my web page will change accordingly to the DB view.
For this change I do not want to change the dlls in the Entity Framework side (not again generate the objects from the new view and publish again).
Any ideas on a good way for doing it ?
Thanks