I notice that even slight variances between the database and the entity model will cause queries to fail. For example, say a column is added to a table that I am querying, even if that column is inconsequential to the query it will fail. Is there any way to get Linq to Entities to handle minor database variances more gracefully? That is, ignoring any variance that does not affect the query?
Some context here, I'm using Linq to Entities to work a with a database for a legacy product of ours. We make changes to our database frequently (mostly column or table additions), for better or worse, and I'd like to be able to handle some of these changes without requiring our customers to be completely updated.
Hope that make sense. My thanks in advance!