我前一段时间有这个,答案不一定是您期望的。当您的连接字符串错误时,通常会出现此错误消息。
大概,您需要这样的东西:
<connectionStrings> <add name="hublisherEntities" connectionString="Data Source=localhost;Initial Catalog=hublisher;Integrated Security=True;" providerName="System.Data.SqlClient" /></connectionStrings><entityframework> <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, Entityframework"> <parameters> <parameter value="Data Source=localhost;Initial Catalog=hublisher;Integrated Security=True" /> </parameters> </defaultConnectionFactory></entityframework>
发生的事情是它在错误的位置寻找数据源。实体框架对它的指定稍有不同。如果您发布连接字符串和EF配置,那么我们可以进行检查。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)