Kinda new to EF
My boss is expressing concerns about how updating our database' schema might effect the EF models we have.
Example: We create a view and bring that into the EF model. Somewhere down the road, we change the Db view's underlying scripting, but don't change the output fields or their types. Would we have to update the EF model to facilitate the db changes?
OR:
We have a stored proc, but change the scripting without any change to the input or output values. Again, do we update the model, too, or will the model pick up the changes automatically.
I don't know how to answer those questions. Any help or pointers will be welcome.