我有一个 ASP.MVC 3.0 应用程序。我的解决方案包含一个 Linq to SQL 项目 (.dbml)。I0ve 选择将其放在不同的项目中,而不是放在 Web 应用程序项目中。我还有另一个“手动”连接到数据库(DAL)的项目。我在网络服务器上部署我的应用程序,激活模拟和 Kerberos 委托。DAL 的模拟工作正常,但由于未知原因,Linq to SQL 模拟无法正常工作。我错过了什么吗?这是 web 应用程序的 web.config:
<identity impersonate="true"/>
这是来自 Linq to SQl 项目的 app.config:
<connectionStrings>
<add name="testConnectionString"
connectionString="Data Source=SERVERNAME;Initial Catalog=DBNAME;Integrated Security=True;"
providerName="System.Data.SqlClient" />
</connectionStrings>
我是否错过了服务器配置或委托中的某些内容?