将特定 AD 帐户与实体框架结合使用

发布于 2024-12-13 06:20:24 字数 135 浏览 0 评论 0原文

我们在一些使用 Windows 身份验证和模拟的 ASP.NET MVC 网站中使用实体框架(4.1 Code First)。

问题是我需要使用特定的 AD 帐户(而不是模拟帐户)连接到 SqlServer。我怎样才能用 EF 做到这一点?

We are using Entity Framework (4.1 Code First) in some ASP.NET MVC websites that are using Windows Authentication and Impersonation.

The problem is that I need to connect to SqlServer with a specific AD account (and not the impersonated one). How can I do that with EF?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

悍妇囚夫 2024-12-20 06:20:24

这与 EF 并没有真正的关系,因为 EF 只是使用 ADO.NET 连接到数据库,而 ADO.NET 使用当前帐户(集成安全性)或 SQL 帐户(顺便说一句,这是针对您的问题的更清晰的解决方案)。

如果您需要使用特殊帐户,则必须手动模拟该帐户进行某些操作,这实际上没什么问题,因为.NET 不提供直接以其他用户身份登录以获取模拟所需的 Windows 身份的方法。您必须使用小型 P/Invoke to WinAPI

This is not really related to EF because EF simply use ADO.NET to connect to database and ADO.NET uses either current account (integrated security) or SQL account (which is btw. more clear solution for your problem).

If you need to use special account you must manually impersonate the account for some operations which is actually little problem because .NET doesn't provide method for directly log-in as another user to gets her windows identity needed for impersonation. You must use small P/Invoke to WinAPI.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文