开发者

Impersonating user with Entity Framework

开发者 https://www.devze.com 2022-12-14 22:35 出处:网络
So we have our web app up and going with entity framework.What we\'d like to do is impersonate the current user when we\'re accessing the DB.We\'re not interested in setting impersonation up in our we

So we have our web app up and going with entity framework. What we'd like to do is impersonate the current user when we're accessing the DB. We're not interested in setting impersonation up in our web config.

Ideall开发者_如何学Cy using something like this: http://geekswithblogs.net/jkurtz/archive/2007/08/27/114992.aspx when we're about to access data.

UPDATED: I'm looking for a way to abstract this code out so I don't have to have it in every repository function call.


Your EF connection string is going to need to be set up for using a trusted connection.

You won't need to set up Impersonation in your web.config, but you do need to be using Windows Authentication.

Then just do this:

using (((WindowsIdentity)HttpContext.Current.User.Identity).Impersonate())
using (var dbContext = new MyEntityFrameworkContainer())
{
    ...
}

Any code inside the curly braces of the using statements will run as the authenticated user.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号