Async / Await with Entity Framework 6.1.1和模拟

时间:2014-08-13 19:38:26

标签: c# .net sql-server entity-framework async-await

我在IIS中托管了一个从多个源(所有SQL Server)检索数据的WCF服务。对于每个数据源,我必须模拟不同的Active Directory用户才能连接到数据库。我正在使用Entity Framework v6.1.1来处理两个数据源。集成安全性也在连接字符串中设置为True。

我使用下面的示例来设置模拟用户,其中模拟用户是我从配置中设置的System.Security.Principal.WindowsImpersonationContext

internal async Task<List<string>> GetItemsByLookupItemsAsync(List<string> lookupItems) 
{
    var result = new List<string>();

    using (var db = new EntityFrameworkDb()) 
    {

        var query = from item in db.Table
                    where lookupItems.Contains(item.LookupColumn)
                    select item.StringColumn;

        var queryResult = new List<string>();
        using (GetImpersonatedUser())
        {
            queryResult.AddRange(await query.ToListAsync());
        }

        result.AddRange(queryResult.OrderBy(e => e));
    }

    return result;
}

问题是前面的代码抛出一个SqlException,说运行Web服务的帐户无法登录到数据库。看来,当我点击await时,我失去了模仿背景。

有什么建议可以解决这个问题?

1 个答案:

答案 0 :(得分:7)

false中的legacyImpersonationPolicy设置为true,将alwaysFlowImpersonationPolicy设置为web.config,然后重新启动IIS

<configuration>
   <runtime>
     <legacyImpersonationPolicy enabled="false"/>
    <alwaysFlowImpersonationPolicy enabled="true"/>   
  </runtime>
</configuration>