昨天学习了MVC EntityFramework 但在添加控制器的时候出现了无法添加元数据
以下是具体英文:
Using the same DbCompiledModel to create contexts againts diffrent types of database servers is not supported.Instead,create a separate DbCompiledModel for
each type of server being used.
是数据库连接字符串的问题,如果用的是SQL Server,建议改为下面的写法:
<add name="连接字符串名称" connectionString="Data Source=服务器服务器名称;Initial Catalog=数据库名称;Integrated Security=True" providerName="System.Data.SqlClient" />