设置自定义主体以模拟Sql Server用户

时间:2013-11-01 17:53:03

标签: sql-server authentication single-sign-on wif claims-based-identity

如果要使用自定义主体(首选基于声明的主体)来模拟Sql Server用户,我需要做什么。

        var claims = new List<Claim>
            {
                /* What do I need in here? */
            };

        var claimsIdentity = new ClaimsIdentity(
            claims, "Basic", "UserName", ClaimTypes.Role);

        Thread.CurrentPrincipal = new ClaimsPrincipal(claimsIdentity);

最后,我希望SQL Server信任我的应用程序层,以及它定义的主体/角色。

1 个答案:

答案 0 :(得分:0)

SQL Server不支持。