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



我需要做什么才能使用自定义主体(最好是基于声明的主体)来模拟 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 信任我的应用程序层以及它定义的主体/角色。

SQL Server不支持。

相关内容

  • 没有找到相关文章

最新更新