I needed to downgrade my solution from VS2013 to VS2010 for internal policy reasons. After doing so, the Entity Framework 6 project within the VS2010 solution builds but has three errors. All projects in solution use .Net 4.0. What do I need to do to remove Errors from my Entity Framework project? Will these errors cause runtime issues these errors? Should I build the VS 2013 Entity Framework project an external assembly an reference it within the VS2010 solution?
Error 10023: Could not find the conceptual model to validate.
Error 10024: Could not find the storage model to validate.
Error 10025: Could not find the mapping model to validate
Jerry Noll