强类型@User.Identity

发布于 2024-12-08 12:57:22 字数 207 浏览 0 评论 0原文

我自定义了 IIdentityIPrincipal,在 IIdentity 中添加了更多属性。

您可以为我的自定义类获取强类型实例@User.Identity吗?无需在演员阵容中进行转换。

我想到了类似razor自定义View的东西,但根本不知道从哪里开始。

I customize IIdentity and IPrincipal adding a few more properties in IIdentity.

You can obtain a strongly typed instance @User.Identity for my custom class? Without having to make conversions in cast.

I thought of something like razor customize the View, but do not even know where to start.

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

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

发布评论

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

评论(2

半世晨晓 2024-12-15 12:57:22

您可以尝试在 IPrincipal 上创建扩展方法

public static class PrincipalExtensions
{
    public static MyIdentity GetMyIdentity (this IPrincipal principal)
    {
        return principal.Identity as MyIdentity;
    }
}

,然后通过调用 @User.GetMyIdentity() 获取您的身份

You could try creating an extension method on IPrincipal

public static class PrincipalExtensions
{
    public static MyIdentity GetMyIdentity (this IPrincipal principal)
    {
        return principal.Identity as MyIdentity;
    }
}

and then get your identity by calling @User.GetMyIdentity()

顾挽 2024-12-15 12:57:22

您可以为视图创建一个新的基本类型,并向其中添加将进行转换的属性或方法。这样你就可以避免在你的观点中一直这样做。

You could create a new base type for your views and add to it a property or method that will do the casting. That way you can avoid doing it all the time in your views.

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